Hi all,
Try as I might, I can't seem to change the main face colour of the TCircularGauge. I can't do it with the editor, or by researching the various properties etc.
Please help, Thanks.
Ian Sharp.
How to change TCircularGauge colour
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Ian,
This is most likely because you need to disable the gradient.
At design-time you can go to Series -> Format -> Back -> Gradient tab and disable Visible property. Then go to Series -> Format -> Back -> Format tab an set Color property.
At run-time you can do this:
This is most likely because you need to disable the gradient.
At design-time you can go to Series -> Format -> Back -> Gradient tab and disable Visible property. Then go to Series -> Format -> Back -> Format tab an set Color property.
At run-time you can do this:
Code: Select all
Series1.Face.Gradient.Visible:=false;
Series1.Face.Color:=clRed;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |