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
chart-type="Candlestick"
items-source="ctx.data"
binding-x="x">
<wj-flex-chart-series
binding="hi,lo,open,close">
</wj-flex-chart-series>
</wj-flex-chart>