When I have a numeric gauge and I set it to not vissible it still show the number and the background. Could it be as the other types of series which hide all the serie?
Thanks
Numeric gauge not visible
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Numeric gauge not visible
Again, it would be much appreciated if these reproducible defects could be added directly into Steema's bug database http://bugs.teechart.net. I've added this problem in as ID=620, and as you can see it has already been fixed.wakeup wrote:When I have a numeric gauge and I set it to not vissible it still show the number and the background. Could it be as the other types of series which hide all the serie?
The workaround is to set the other series elements to active/visible false, e.g.
Code: Select all
NumericGauge series;
private void InitializeChart()
{
series = new Steema.TeeChart.Styles.NumericGauge(tChart1.Chart);
series.FillSampleValues();
}
private void button1_Click(object sender, EventArgs e)
{
series.Visible = false;
foreach (Steema.TeeChart.Tools.Marker item in series.Markers)
{
item.Active = false;
}
series.Axis.Title.Visible = false;
}
Best Regards,
Christopher Ireland / 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 |
Re: Numeric gauge not visible
Sorry but sometimes although reproducible they seem bugs and finally they aren't, so I usually ask first...Christopher wrote:
Again, it would be much appreciated if these reproducible defects could be added directly into Steema's bug database http://bugs.teechart.net. I've added this problem in as ID=620, and as you can see it has already been fixed.
Thanks a lot