Hello,
Would it be possible for an user to resize a chart at run time like the developer can do at design time.
When my application is running i would like that the user could resize a chart by using his mouse at the chart's corner
Are the TChart have special functions to do that?
Thanks for help
Regards
Resize TChart at runtime
Hi Calou,
Yes there is the property AllowResizeChart from TSelectorTool that allows the user to resize your chart.
Yes there is the property AllowResizeChart from TSelectorTool that allows the user to resize your chart.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi Calou,
Yes of course. Here it is:
Yes of course. Here it is:
Code: Select all
uses TeeSelectorTool;
procedure TForm1.FormCreate(Sender: TObject);
var SelectorTool: TSelectorTool;
begin
SelectorTool := TSelectorTool.Create(Chart1);
SelectorTool.ParentChart := Chart1;
SelectorTool.AllowResizeChart := true;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |