Page 1 of 1

Multiple series one axe. Series overwrites axe

Posted: Tue Jun 27, 2006 8:15 am
by 6930369
Dear,

I have one Fastline Series showing a chromatogram. The X and Y axe is a double value. I want so see the x-values of this serie in the x axe.
Then I have a Points serie.
If I add a point in the following way:
l_Points.Add(p_Peaks.MaxX, p_Peaks.MaxY, p_Peaks.PeakName);
and show this series in the chart, the x-axe shows the name of the marks and no longer the values of the fastline.
I want to see the values of the fasline and not the marks of the points.
How can I prevent the points serie to (over)write the x axe.

Kind Regards

Posted: Tue Jun 27, 2006 10:01 am
by narcis
Hi Peter,

TeeChart's default behaviour is using the text labels of the first labels that has them. However you can change this by using:

Code: Select all

            tChart1.Axes.Bottom.Labels.Style = Steema.TeeChart.AxisLabelStyle.Value;