I am creating a countour plot in C++Builder via code. However, I am struggling to get appropriate contour levels and wondered whether the TChartEditor provides any way of adjusting the contours at run-time?
I cannot find anything in the user interface to edit the contour levels. Are there options ther that I am missing? If so, where?
Do I have to set particular flags for TChartEditor in my C++ code to add allow me to edit contour levels at run-time?
I'd be grateful if anyone could help me.
Thanks
Andrew
Is it possible to change contour levels in TChartEditor ?
-
- Newbie
- Posts: 8
- Joined: Thu Sep 30, 2021 12:00 am
Re: Is it possible to change contour levels in TChartEditor ?
Hello Andrew,
You can show the "Levels" tab in the Chart Editor adding the "TeeContourEdit" pragma link:
.cpp:
Then you can untick the "automatic" checkbox and play with the levels.
Finally, please note that we discourage giving users access to the Chart Editor. The Chart Editor is designed to help developers create their charts; it is not intended or recommended for end users because it offers so many options that it is quite easy to select settings that make little or no sense.
You can show the "Levels" tab in the Chart Editor adding the "TeeContourEdit" pragma link:
.cpp:
Code: Select all
#pragma link "VCLTee.TeeContourEdit"
Finally, please note that we discourage giving users access to the Chart Editor. The Chart Editor is designed to help developers create their charts; it is not intended or recommended for end users because it offers so many options that it is quite easy to select settings that make little or no sense.
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 8
- Joined: Thu Sep 30, 2021 12:00 am
Re: Is it possible to change contour levels in TChartEditor ?
Yeray
Thanks - that helps.
Andrew
Thanks - that helps.
Andrew