Taguge

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Friis
Newbie
Newbie
Posts: 11
Joined: Mon Apr 11, 2011 12:00 am

Taguge

Post by Friis » Wed Mar 28, 2012 9:11 am

Hi,

How do I change the increment size in this TGauge?
TGauge2.JPG
TGauge2.JPG (241.73 KiB) Viewed 4434 times
I have tried but it doesn't work:

Code: Select all

Chart1.Axes.Left.Increment := 50;
How do I change the size of the green and red colors in the interior of the Gauge?? I have marked the red area which I would like to change the apperance of...
TGauge.JPG
TGauge.JPG (232.7 KiB) Viewed 4411 times

Friis
Newbie
Newbie
Posts: 11
Joined: Mon Apr 11, 2011 12:00 am

Re: Taguge

Post by Friis » Wed Mar 28, 2012 9:15 am

How do I change the color of the white dot indicating the value of the Gauge ??

Friis
Newbie
Newbie
Posts: 11
Joined: Mon Apr 11, 2011 12:00 am

Re: Taguge

Post by Friis » Wed Mar 28, 2012 9:17 am

How do I change the color of the red and gree areas?

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

Re: Taguge

Post by Yeray » Wed Mar 28, 2012 2:23 pm

Hi Friis,

The following seems to work fine for me here:

Code: Select all

uses TeeCircularGauge;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with Chart1.AddSeries(TCircularGauge) as TCircularGauge do
  begin
    Axis.Increment:=5;
    EndPoint.Color:=clRed;

    GreenLine.Gradient.Visible:=false;
    GreenLine.Color:=clYellow;

    RedLine.Gradient.StartColor:=clYellow;
    RedLine.Gradient.EndColor:=clMaroon;
  end;
end;
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