User (Legacy) Posted February 10, 2004 Report Share Posted February 10, 2004 Hi, I try to draw 2 series (galleryObj = SoftwareFX.ChartFX.GalleryObj.Line and Gallery = Lines). The first one has 5 points, the second one, only 3 given at design time. For each point, the code is : (Chart1.Value(0, i) = 3.6 Chart1.XValue(0, i) = 0) The problem is that the 2 points that are not given for the second serie seem to equal 0 by default on the graph ! How can I manage to draw series with different number of points ? Rgds Link to comment Share on other sites More sharing options...
Software FX Posted February 10, 2004 Report Share Posted February 10, 2004 All series have the same number of points. The chart's data is basically a grid. You can hide points by assigning Chart.Hidden to its value. You can initialize all points to Chart.Hidden when you do your OpenData by doing: chart1.OpenData(COD.Value | COD.Remove | COD.AllocHidden, ... -- FP Software FX Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.