Can someone tell me how to load a simple gauge. I can not get any data to fill the control.
Public Gauge2 As Steema.TeeChart.Styles.Gauges = New Steema.TeeChart.Styles.Gauges()
TChart2.Series.Add(Gauge2)
Gauge2.Add(corry)
Simple Gauge
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi phil1995,
You need to use gauges series like this:
You need to use gauges series like this:
Code: Select all
Dim Gauge1 As Steema.TeeChart.Styles.Gauges = New Steema.TeeChart.Styles.Gauges(TChart1.Chart)
Gauge1.Value = 60
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 |