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
Multiple series one axe. Series overwrites axe
-
- Newbie
- Posts: 1
- Joined: Fri Nov 15, 2002 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
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;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |