Assigning Ternary Vertex Titles
-
- Newbie
- Posts: 5
- Joined: Mon Sep 09, 2019 12:00 am
Assigning Ternary Vertex Titles
I am using a ternary chart (TeeChart Pro v2020.30.200525 32bitVCL) in Delphi 10.4 and can assign Vertex Titles at design time; however, they default back to A, B, and C at run time. How do I rectify this behavior? Why do the values assigned at design time not carry through to run time?
Re: Assigning Ternary Vertex Titles
Hello,
Thankyou for the bug reposrt. There seems to be a problem with the serialisation of the values.
You can modify them by code in this way:
It has been logged here to be fixed.
Regards,
Marc Meumann
Thankyou for the bug reposrt. There seems to be a problem with the serialisation of the values.
You can modify them by code in this way:
Code: Select all
Series2.VertexTitles[0].Text := 'My A Title';
Regards,
Marc Meumann
Steema Support