Page 1 of 1
Numeric gauge not visible
Posted: Wed Mar 05, 2014 10:28 am
by 15654539
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
Re: Numeric gauge not visible
Posted: Thu Mar 06, 2014 9:38 am
by Christopher
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?
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.
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;
}
Re: Numeric gauge not visible
Posted: Thu Mar 06, 2014 10:17 am
by 15654539
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.
Sorry but sometimes although reproducible they seem bugs and finally they aren't, so I usually ask first...
Thanks a lot