Gauge Series

TeeChart for ActiveX, COM and ASP
Post Reply
mboangher
Newbie
Newbie
Posts: 10
Joined: Wed Feb 04, 2004 5:00 am

Gauge Series

Post by mboangher » Tue Jun 22, 2004 8:11 am

Using the TeeChart 6 ActiveX, I'd like to use the Gauge series to display some values.
But with certain sets of values (Minimum = 0, Maximum = 200, Value = 15, TotalAngle = 90) , it displays too many gradations, looking really cluttered.
Is there a way to prevent / tune this ?

Thank you.

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Tue Jun 22, 2004 11:04 pm

Hi,

how about setting the Circled to False and changing the XRadius, i.e :

Code: Select all

With TChart1.Series(0).asGauge
.Minimum = 0
.Maximum = 200
.Value = 15
.TotalAngle = 90
.Circled = False
.XRadius = 285
End With

Post Reply