Circular gauge ticks

TeeChart for ActiveX, COM and ASP
Post Reply
Xetar
Newbie
Newbie
Posts: 1
Joined: Mon Jan 19, 2009 12:00 am

Circular gauge ticks

Post by Xetar » Mon Feb 22, 2010 10:30 pm

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.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Circular gauge ticks

Post by Yeray » Tue Feb 23, 2010 11:33 am

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
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply