Hello!
I have 2 questions re the dataChart:
1. Is it possible to use it to display a scatter chart with x-values being strings? Right now I cannot assign a category x axis to a scatterseries.
2. Consider a following dataset:Serie XValue YValueSerie1 Dim1 10 Dim2 12 Dim3 14 Dim4 16 Dim5 18
Serie2 Dim1 30 Dim2 35 Dim4 40
Serie3 Dim1 70 Dim2 72 Dim5 77
I create a chart with LineSeries, but what I get is Serie2 and Serie3 lines start at Dim1 and ending at Dim3. How can I draw a chart with some of the points missing?
It should, I believe. You can use
UnknownValuePlotting
To describe whether the discontinuities should be shown as gaps in the line, or whether linear interpolation should be used to bridge the gaps.
-Graham
Does it work the same with the ScatterLineSeries?
Hi you can use double.NaN or null if you want to put missing values in the line series.