Version

Binding to Data

The igFinancialChart uses a data adapter to analyze the data sources and apply rules to them to plot the data, whether you use a single data set or multiple.

In some cases you may need to explicitly define whether or not a particular property associated with your data model needs to plot. You can either set the property in the IncludedProperties or ExcludedProperties to tell the chart if they should be included or excluded:

In JavaScript:

$("#chart").igFinancialChart({
    dataSource: data,
    includedProperties: [ "Open", "High", "Low", "Close", "Volume", "Date" ],
    excludedProperties: [ "PercentChange", "SellOrders", "BuyOrders", "Label" ]
});

The following topics go further in describing how to bind to data:

View on GitHub