Page 1 of 1

Circular gauge ticks

Posted: Mon Feb 22, 2010 10:30 pm
by 15051541
This may be simple, but i can't find it anywhere in documents or this forum. In the Circular Gauge Series, i can't find how to change the spacing on the major ticks. The minor ticks is clearly available, but i can't determine the major. since I need my gauge to read from 0 to 4000, a spacing of 10 (the default) isn't going to work.

Re: Circular gauge ticks

Posted: Tue Feb 23, 2010 11:33 am
by yeray
Hi Xetar,

You could do something as followings:

Code: Select all

  TChart1.AddSeries scCircularGauge
  
  TChart1.Series(0).asCircularGauge.Minimum = 0
  TChart1.Series(0).asCircularGauge.Maximum = 4000
  TChart1.Axis.Bottom.Increment = 500