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 Popup ToolBar

The chart supports displaying a helper popup toolbar that offers various functionality such as changing the series type, fill and line color as well a specifying the marker type and label visibility.

To enable the popup, set Popup.Enabled := True;

AdvChartView1.Popup.Enabled := True;

When clicking on a series point, slice, or bar depending on the chosen series type the popup will be shown and initialized based on the current settings of the series.


The popup options can be configured via the Popup.Options property. This allows you to show more or less dropdown pickers depending on the series configuration. Below is a sample that demonstrates displaying the full set of options versus a limited set with line color, type and width.

AdvChartView1.Popup.Options := AllOptions;


AdvChartView1.Popup.Options := [ctpoStroke, ctpoLineStyle, ctpoLineWidth];