Jump to content
Software FX Community

Adding Line series to XY scatter


User (Legacy)

Recommended Posts

Yes. All series have the same number of points, in other words the chart 

data is a grid of values.

What you need to do is "hide" those extra points. You can do this in two

ways:

1) When you add the new series to the chart, make sure you do:

chart1.OpenData(COD.Values |

COD.AllocHidden,chart1.NSeries+1,chart1.NValues);

chart1.CloseData(COD.Values);

2) Set the value for the remaining points (from 4 to 19) to Chart.Hidden

chart1.Value[i] = Chart.Hidden;

--

FP

Software FX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...