Multiple series one axe. Series overwrites axe

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Peter Schoenenberger
Newbie
Newbie
Posts: 1
Joined: Fri Nov 15, 2002 12:00 am

Multiple series one axe. Series overwrites axe

Post by Peter Schoenenberger » Tue Jun 27, 2006 8:15 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jun 27, 2006 10:01 am

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;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply