Gauges

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
mikethelad
Newbie
Newbie
Posts: 58
Joined: Thu Jul 05, 2012 12:00 am

Gauges

Post by mikethelad » Mon Sep 17, 2012 3:47 pm

Does my licence give me T-Chart Gauges?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Gauges

Post by Narcís » Mon Sep 17, 2012 4:43 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

mikethelad
Newbie
Newbie
Posts: 58
Joined: Thu Jul 05, 2012 12:00 am

Re: Gauges

Post by mikethelad » Wed Sep 19, 2012 1:13 pm

How can I change the black face colour of the gauge
Attachments
graph.JPG
graph.JPG (15.72 KiB) Viewed 4419 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Gauges

Post by Sandra » Thu Sep 20, 2012 9:35 am

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,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply