Z-Order Problem with Bubble Series
Posted: Tue May 02, 2006 6:22 am
Hi,
I have an application in which we first draw the normal curve. On top of it we plot a bubble. The normal curve we are plotting is continous and bubble point gets hidden under the normal curve.
Here normal curve meant the Steema.Chart.Line / Series.
We tried changing the Z-order. It works once. But when I change the
curve points, the bubble goes behind the normal curve.
Series s = curve.InnerCurve.InnerCurve.Series;
int bindex = chartViewer.Series.IndexOf(bubbleseries);
int sindex = chartViewer.Series.IndexOf(s);
chartViewer.Series.Exchange(bindex, sindex);
Can you please suggest how to fix this issue. Thanks.
I have an application in which we first draw the normal curve. On top of it we plot a bubble. The normal curve we are plotting is continous and bubble point gets hidden under the normal curve.
Here normal curve meant the Steema.Chart.Line / Series.
We tried changing the Z-order. It works once. But when I change the
curve points, the bubble goes behind the normal curve.
Series s = curve.InnerCurve.InnerCurve.Series;
int bindex = chartViewer.Series.IndexOf(bubbleseries);
int sindex = chartViewer.Series.IndexOf(s);
chartViewer.Series.Exchange(bindex, sindex);
Can you please suggest how to fix this issue. Thanks.