Jump to content
Software FX Community

Re: Array


Software FX

Recommended Posts

The OpenDataEx method receives the number of series and the number of points

per series, the ValueEx property receives the index of the series and point,

so to create a chart that has 18 series and say 50 points, you must do:

ChartFX1.OpenDataEx COD_VALUES, 18, 50

For i = 0 to 17

For j = 0 to 49

ChartFX1.ValueEx(i,j) = YourArray(i,j)

Next j

Next i

ChartFX1.CloseData COD_VALUES

--

Frank

SFX

"Marty Cymerman" <mcymerman@greatbatch.com> wrote in message

news:39C2156A.31216295@greatbatch.com...

> I realize that this is standard graphing practice, however I cannot get

> my multiple series to plot.

> I have an array that loops to eof, which is 18 times, this works fine. I

> have tried the passing data examples supplied to plot the 18 series, but

> all I get is one long series, all 18 in one line. How do I tell chartfx

> to re-plot after the end of series one?ect

>

> Marty

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...