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
Resetting Automatic after manual Scaling / Ranging

To reset the chart after manual scaling / scrolling, set the property mode on series level to cmInit encapsulated with a beginupdate and an endupdate:

  
AdvChartView1.BeginUpdate;
AdvChartView1.Panes[0].Series.Mode := cmInit;
AdvChartView1.EndUpdate;