Labels on Surface series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
mweaver
Newbie
Newbie
Posts: 10
Joined: Tue Apr 08, 2003 4:00 am

Labels on Surface series

Post by mweaver » Wed Dec 01, 2004 7:29 pm

In the TeeChart Pro gallery:

http://www.steema.com/products/teechart/gallery.html

there is an image illustrating the Surface series. Would it be possible to get the source code for that particular chart image? The thing I am most interested in is how to put the labels on the Surface series - the numbers floating on the surface that actually indicate the values.

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

Post by Narcís » Thu Dec 02, 2004 9:30 am

Hi mweaver,

to do this you have to edit the series marks. You can do it easily using the editor or by code doing something like:

Code: Select all

Steema.TeeChart.Styles.SeriesMarks marks=this.tChart1.Series[0].Marks ;
			
marks.Visible = true;
marks.Transparent = true;
marks.DrawEvery = 8;
marks.Style = Steema.TeeChart.Styles.MarksStyles.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