Hi,
I have a question about dynamic series binding.
This is code example:
ChartData has some chartItem, and one ChartItem will be graph a line in the ChartView.
ChartItem's quantity is dynamic in the ChartData.
What ways can be binding this data in the ChartView? (Lineseries are dynamic.)
Thank you.
I have a question about dynamic series binding.
This is code example:
public class MyViewModel{ public List<ChartData> chartItem {get;set;}; public List<List<ChartData>> ChartData {get;set;};}public class ChartData{ public DateTime Xvalue{get;set;} public DateTime Yvalue{get;set;}}ChartData has some chartItem, and one ChartItem will be graph a line in the ChartView.
ChartItem's quantity is dynamic in the ChartData.
What ways can be binding this data in the ChartView? (Lineseries are dynamic.)
Thank you.