DevExtreme DataSource
To get the DataSource instance, call the Funnel's getDataSource() method:
jQuery
var ds = $("#funnelContainer").dxFunnel("getDataSource");
AngularJS
angular.module('DemoApp', ['dx']) .controller('DemoController', function ($scope) { $scope.ds = {}; $scope.funnelOptions = { // ... onInitialized: function (e) { $scope.ds = e.component.getDataSource(); } }; });
Knockout
var viewModel = { ds: {}, funnelOptions: { // ... onInitialized: function (e) { viewModel.ds = e.component.getDataSource(); } } }; ko.applyBindings(viewModel);
Angular
import { ..., ViewChild } from "@angular/core"; import { DxFunnelModule, DxFunnelComponent } from "devextreme-angular"; // ... export class AppComponent { @ViewChild(DxFunnelComponent, { static: false }) funnel: DxFunnelComponent; // Prior to Angular 8 // @ViewChild(DxFunnelComponent) funnel: DxFunnelComponent; ds: any = {}; getDataSource() { this.ds = this.funnel.instance.getDataSource(); } } @NgModule({ imports: [ // ... DxFunnelModule ], // ... })
Then, access the underlying store with the store() method, and call the store's push(changes) method to modify data. The Funnel will be updated automatically.
ds.store().push([ { type: "update", key: "Oranges", data: { count: 10 } }, { type: "remove", key: "Apples" } ]);
See Also
- Call Methods: Angular | Vue | React | jQuery | AngularJS | Knockout | ASP.NET MVC 5 | ASP.NET Core
- Data Layer - Overview
- Data Layer - DataSource Examples
jQuery
Make changes to the array using standard methods. Then, reassign the updated array to the Funnel using the option(optionName, optionValue) method.
var fruits = [ { fruit: 'Apples', count: 10 }, { fruit: 'Oranges', count: 12 }, { fruit: 'Lemons', count: 15 } ]; fruits.push({ fruit: 'Pineapples', count: 3 }); // Reassigns the "fruits" array to the Funnel $("#funnelContainer").dxFunnel("option", "dataSource", fruits);
See Also
Angular
Enclose the dataSource option in square brackets to bind it to an array using one-way binding. Now, whenever an item is added or removed from the array, the Funnel will be updated accordingly.
<dx-funnel [dataSource]="fruits" argumentField="fruit" valueField="count"> </dx-funnel>
import { DxFunnelModule } from "devextreme-angular"; // ... export class AppComponent { fruits = [ { fruit: 'Apples', count: 10 }, { fruit: 'Oranges', count: 12 }, { fruit: 'Lemons', count: 15 } ]; } @NgModule({ imports: [ // ... DxFunnelModule ], // ... })
AngularJS
Declare two-way binding between the dataSource option and the scope property that contains an array. For this, configure the bindingOptions object of the Funnel as follows.
<div ng-controller="DemoController"> <div dx-funnel="{ bindingOptions: { dataSource: 'fruits' }, argumentField: 'fruit', valueField: 'count' }"></div> </div>
angular.module('DemoApp', ['dx']) .controller('DemoController', function ($scope) { $scope.fruits = [ { fruit: 'Apples', count: 10 }, { fruit: 'Oranges', count: 12 }, { fruit: 'Lemons', count: 15 } ]; });
Now, whenever an item is added or removed from the fruits
array, the Funnel will be updated accordingly. If you need to track changes in objects, configure the bindingOptions object as follows.
<div ng-controller="DemoController"> <div dx-funnel="{ bindingOptions: { dataSource: { dataPath: 'fruits', deep: true } }, argumentField: 'fruit', valueField: 'count' }"></div> </div>
In this case, the Funnel will use the $watch listener instead of the default $watchCollection listener. Note that the use of the $watch listener may impact the Funnel's peformance.
See Also
Knockout
Declare the array observable and bind the dataSource option to it. Whenever an item is added or removed from this array, the Funnel will be updated accordingly.
<div id="funnelContainer" data-bind="dxFunnel: { dataSource: fruits, argumentField: 'fruit', valueField: 'count' }"></div>
var viewModel = { fruits: ko.observableArray([ { fruit: 'Apples', count: 10 }, { fruit: 'Oranges', count: 12 }, { fruit: 'Lemons', count: 15 } ]) }; ko.applyBindings(viewModel);
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.