I am Using the component 'TChartPreviewer' to print the TCharts.
I would like to Pre-set some field to some defaults ( for example to check ON the option 'smooth') and if possible to hide or at least lock some fields once the caller will have force the settings to the required ones. The goal is to let the minimum interface, in fact the minimum the SW user will really need.
How can I process?
Thank-you for your answers.
TChartPreviewer
Re: TChartPreviewer
Hi jpm,
I recommend you to create you custom Previewer. You can simply create a new form, add a TTeePreviewPanel to the form and the checkboxes you want the user to have access.
I recommend you to create you custom Previewer. You can simply create a new form, add a TTeePreviewPanel to the form and the checkboxes you want the user to have access.
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
with Form2.TeePreviewPanel1 do
begin
Panel:=Chart1;
Orientation:=ppoLandscape;
AsBitmap:=true;
end;
Form2.Show;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |