I can't seem to remove a label from a single data value in a chart, even though the data is null and not drawn on the chart is still produces a label with "0" in it. This label is then shown if I hover over another datapoint from another series. How can I avoid drawing lables for a single point?
I'm using version 2.0.2652.22.325
Remove label from data point
-
- Newbie
- Posts: 9
- Joined: Thu Jan 11, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello,
You can try using this:
Also notice there are much newer v2 versions available at the client download area.
You can try using this:
Code: Select all
tChart1.Axes.Bottom.Labels.Visible = false;
tChart1.Axes.Left.Labels.Visible = false;
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 |
-
- Newbie
- Posts: 9
- Joined: Thu Jan 11, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello,
In that case the easiest solution would be populating series with null values and empty string labels, for example:
In that case the easiest solution would be populating series with null values and empty string labels, for example:
Code: Select all
line1.Add("");
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 |