Page 1 of 1
Gauges
Posted: Mon Sep 17, 2012 3:47 pm
by 15662902
Does my licence give me T-Chart Gauges?
Re: Gauges
Posted: Mon Sep 17, 2012 4:43 pm
by narcis
Hello,
Yes, gauges are included with TeeChart for .NET developer license. Have a look at the series styles in the chart gallery and features demo available at TeeChart's program group.
Re: Gauges
Posted: Wed Sep 19, 2012 1:13 pm
by 15662902
How can I change the black face colour of the gauge
Re: Gauges
Posted: Thu Sep 20, 2012 9:35 am
by 10050769
Hello mikethelad,
If you want change the black face of Gauge, you only need disable the gradient and change color of property FaceBrush as do in next lines of code:
Code: Select all
Steema.TeeChart.Styles.CircularGauge gauge1;
private void InitializeChart()
{
gauge1 = new Steema.TeeChart.Styles.CircularGauge(tChart1.Chart);
gauge1.FaceBrush.Gradient.Visible = false;
gauge1.FaceBrush.Color = Color.Red;
}
Can you tell us if previous code works as you expect?
Thanks,