JavaScript/jQuery Funnel - Pyramid Chart

You can use the Funnel UI component to create a pyramid chart. Change the algorithm property to "dynamicHeight" and the inverted property to true.

JavaScript
  • $(function() {
  • $("#funnelContainer").dxFunnel({
  • // ...
  • algorithm: "dynamicHeight",
  • inverted: true
  • });
  • });

View Demo

See Also