Phil V Guest
|
Posted: Tue May 17, 2005 9:20 am Post subject: TChart XY Scatter? |
|
|
Does the standard TChart support an XY scatter type of graph?
That is I need to be able to plot points connected by lines both forwards
AND backwards. For example the code:
Series1->Clear();
Series1->AddXY(15,30,"",clRed);
Series1->AddXY(18,40,"",clRed);
Series1->AddXY(10,50,"",clRed);
Seems to generate a graph that Plots the points on a graph and connected in
the following order:
10X 50Y
15X 30Y
18X 40Y
It seems that the component has ignored the order the points were loaded
into the series, and has just plotted them in incrementing-X order.
Is there anyway with this component to be able to plot lines both increasing
and decreasing in X value? If not is there a compenent anyone can recommend
that does?
Thanks,
Phil
|
|