JavaScript/jQuery Funnel - Relocate Labels

Labels are arranged in a column by default. Change the label.position property to display labels beside or inside funnel items.

JavaScript
  • $(function() {
  • $("#funnelContainer").dxFunnel({
  • // ...
  • label: {
  • position: "columns" // or "inside" | "outside"
  • }
  • });
  • });
See Also