Jump to content
Software FX Community

Re: XY Charts where each series has a different number of points


Software FX

Recommended Posts

All series have the same number of points. Doing: 

cfxChart.OpenDataEx COD_VALUES, 1, 846

cfxChart.OpenDataEx COD_XVALUES, 1, 846

Will remove any additional points after 846.

If you want to have ONE series with 850 and ONE with 846, you must do only

ONE OpenDataEx as follows:

cfxChart.OpenDataEx COD_VALUES, 2, 850

cfxChart.OpenDataEx COD_XVALUES, 2, 850

Then for the shortest series, you must assign the remaining 4 values to

CHART_HIDDEN so that they won't show.

Frank

SFX

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...