Hello,
I need to dynamically add multiple line series on a chart. Do you have any sample codes showing how this can be done as all the examples I have found add lines statically?
Thank you.
Hello,
I need to dynamically add multiple line series on a chart. Do you have any sample codes showing how this can be done as all the examples I have found add lines statically?
Thank you.
Hello,
You should be able to create your series programmatically, setting similar properties to the XAML examples. Then add it to the chart via a line like this:
chart.Series.Add(mySeries);
Please log in to a validated account to post comments.