Hi Jeremy,
Currently, there is no NexJ documentation for configuring the chart controls, so I will try my best to answer your questions.
On the chart controls, data collection properties are obsolete and we do not use them anymore to populate the charts with data.
Instead, we use the CategoryDataset properties to feed data into the charts. Let me explain some of the properties there and use this highcharts demo as an example:
- rowKey
- This property refers to the attribute that stores the series of the data point. In the highcharts demo, “Tokyo” and “New York” are examples of rowKey values.
- columnKey
- This property refers to the attribute that stores the category of the data point. In the highcharts demo, “Jan” and “Feb” are examples to columnKey values.
- value
- This property refers to the attribute that stores the value of the data point. In the highcharts demo, Tokyo in Jan has a value of 49.9.
- label
- This property refers to the attribute that stores the label of the data point. In the highcharts demo, the bars do not seem to use labels.
I hope this clarifies the settings on chart controls for you. Please let me know if you have any further questions.
Thanks,
Ivan