JavaScript/jQuery Funnel - JSON Data

To bind the Funnel to data in a JSON format, assign the data's URL to the dataSource property.

index.js
  • $(function() {
  • $("#funnelContainer").dxFunnel({
  • dataSource: "http://www.example.com/dataservices/data.json",
  • // ...
  • });
  • });

Note that you can also use a JSONP callback parameter.

index.js
  • $(function() {
  • $("#funnelContainer").dxFunnel({
  • dataSource: "http://www.example.com/dataservices/jsonpdata?callback=?",
  • // ...
  • });
  • });

If you need to process data after obtaining it, implement the CustomStore. For details, see the Custom Sources topic.

See Also