This view shows how to create financial charts with the FlexChart control.
The FlexChart supports two types of financial chart: Candlestick and HiLowOpenClose. To use them, set the chartType property to the type you want, and set the series binding property to a string that specifies the fields that contain the high, low, open, and close values in the data source. For example:
<wj-flex-chart
[chartType]="'Candlestick'"
[itemsSource]="data"
[bindingX]="'x'">
<wj-flex-chart-series
[binding]="'hi,lo,open,close'">
</wj-flex-chart-series>
</wj-flex-chart>