Page 1 of 1

Gauge Series

Posted: Tue Jun 22, 2004 8:11 am
by 9080753
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.

Posted: Tue Jun 22, 2004 11:04 pm
by Pep
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