Hi,
The attached file shows two images. The top image shows the circular gauge in the in IDE using the editor. The Hand has a black border (which is what I want) and the default data value is 21.
The second image shows the gauge when the app runs. The black boarder around the hand has disappeared and although the hand value is correct at 95%, the value in the center is still 21.
I recently updated to version 2018.26 from version 2017.23. In the older version the center value matched the Hand value, but the black boarder does not appear around the Hand in either version.
Is the center value now set differently in later versions rather than the Hand value?
How do I get the Boarder to draw around the hand?
Thanks!
Dave
TeeChart Circular Gauge Problems
Re: TeeChart Circular Gauge Problems
Hello Dave,
Try clearing the Marks and forcing the border visibility at OnCreate event. Ie:
Try clearing the Marks and forcing the border visibility at OnCreate event. Ie:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.Value:=95;
Series1.Marks.Items.Clear;
Series1.Hand.Pen.Visible:=True;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart Circular Gauge Problems
Yeray,
Thanks. The:
Series1.Marks.Items.Clear;
Series1.Hand.Pen.Visible:=True;
Fixes the problem.
The formatting using the TeeChart editing does not work. Will that be corrected in the next release?
Thanks again,
Dave
Thanks. The:
Series1.Marks.Items.Clear;
Series1.Hand.Pen.Visible:=True;
Fixes the problem.
The formatting using the TeeChart editing does not work. Will that be corrected in the next release?
Thanks again,
Dave
Re: TeeChart Circular Gauge Problems
Hello Dave,
I've added two tickets in the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2162
http://bugs.teechart.net/show_bug.cgi?id=2163
Feel free to add your mail to the CC list to be automatically notified when an update arrives.
I've added two tickets in the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2162
http://bugs.teechart.net/show_bug.cgi?id=2163
Feel free to add your mail to the CC list to be automatically notified when an update arrives.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |