Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS VCL Chart
Using the pane,chart or annotations editors at runtime

To use the pane, chart or annotations editors at runtime simply drop the dialog component on the form, set the chart property to the TAdvChartView you want to edit and add the following code:
procedure TForm1.LoadPaneEditor; 
begin 
  AdvChartPanesEditorDialog.ChartView := AdvChartView1; 
  AdvChartPanesEditorDialog.Execute; 
end;