Seems like this should be easy. I've looked through everything I can think of to find how to format the data marks on a line series. I simply want to format them like I do the axis with a string like "#0%".
Thanks
Formatting Series Marks
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi chiphotx,
In that case you need to set the marks to display series value and set values format like this:
In that case you need to set the marks to display series value and set values format like this:
Code: Select all
bar1.Marks.Style = Steema.TeeChart.Styles.MarksStyles.Value;
bar1.ValueFormat = "#0%";
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 |