Gauges
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Gauges
Does my licence give me T-Chart Gauges?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Gauges
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.
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.
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: 58
- Joined: Thu Jul 05, 2012 12:00 am
Re: Gauges
How can I change the black face colour of the gauge
- Attachments
-
- graph.JPG (15.72 KiB) Viewed 4423 times
Re: Gauges
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:
Can you tell us if previous code works as you expect?
Thanks,
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;
}
Thanks,
Best Regards,
Sandra Pazos / 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 |