Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2656

Summary: Editor does not show TChartTools
Product: VCL TeeChart Reporter: Dr. Peter Krauss <krauss>
Component: EditorsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED NOTABUG    
Severity: normal CC: krauss, yeray
Priority: High    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version: RAD 11 Alexandria
Attachments: Contains the project and two images showing the problem

Description Dr. Peter Krauss 2023-11-23 14:30:42 EST
Created attachment 1060 [details]
Contains the project and two images showing the problem

The properties of the predefined or program-controlled chart tools are not displayed in the chart editor during run time.
Is there any setting in these controls that I am doing wrong or have forgotten?
The chart editor of the attached simple example is called up by double-clicking.
Comment 1 yeray alonso 2023-11-27 05:13:07 EST
The editors aren't loaded by default at runtime.
Just add the "VCLTee.TeeEditPro" unit to the uses clause if you want to load all them, or add the specific editors for the tools you are using/supporting. Ie:

uses VCLTee.TeeAxisArrowEdit, VCLTee.TeeToolSeriesEdit;

Also note that we generally advise against providing the editor to end-users, as it's quite easy to end up with an unstable graph with it when in inexperienced hands.