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.
Labels on Surface series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
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 |
Instructions - How to post in this forum |