radar chart

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Lucian
Newbie
Newbie
Posts: 5
Joined: Fri Nov 15, 2002 12:00 am
Location: Romania
Contact:

radar chart

Post by Lucian » Tue Aug 24, 2004 2:18 pm

is it possible to have for the radar charts the values for the axis start from zero (same as Excel does it)?

thx

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Wed Aug 25, 2004 12:43 pm

Hi, Lucien.

Yes, sure. All you must do is set Axes.Left.Minimum to 0.0. Something along these lines:

Code: Select all

radar1.FillSampleValues(5);
Chart1.Axes.Left.Minimum := 0.0;
Marjan Slatinek,
http://www.steema.com

Lucian
Newbie
Newbie
Posts: 5
Joined: Fri Nov 15, 2002 12:00 am
Location: Romania
Contact:

Post by Lucian » Fri Aug 27, 2004 7:31 am

TeeChart 6.01 here, forgot to tell.
It was not working without also:

Chart1.Axes.Left.Automatic := FALSE;

thanks

Lucian

Post Reply