public MarksStyles Style {get; set;}
Remarks
Default: Label
The Style property defines how Series Marks are constructed. Each different Style value makes Marks output a different text. Several options are available, but you can also use the TChart Series.OnGetMarkText event and override the default Series Marks text.
The different Mark styles are:
Value
Shows the point value. It is usually the YValue, except HorizBar series that defaults to the XValue. The TChart Series.ValueFormat property is used to format the resulting string.
Example: "1234"
Percent
Shows the percent the point value represents. The TChart Series.PercentFormat property is used to format the percent value.
Example: "12 %"
Label
Shows the associated Point Label.
Example: "Cars"
Warning:
If the point has no Label (empty label), then the point value is used. You can use TChart Series.OnGetMarkText event to force an empty label for a particular point.
LabelPercent
Shows the point Label and the percent value the point represents. The TChart Series.PercentFormat property is used to format the percent value.
Example: "Cars 12 %"
LabelValue
Shows the point Label and the point value. The TChart Series.ValueFormat property is used to format the resulting string.
Example: "Cars 1234"
Legend
Shows whatever is shown at Chart Legend. Please refer to TChartLegend.TextStyle property for a list of possible values.
PercentTotal
Shows the percent the point represents toghether with the "of" word and the sum of all points absolute values. The TChart Series.PercentFormat property is used to format the percent value.
Example: "12 % of 1234"
NOTE:
You can alter or localize to your language the "of" word by using the "PercentOf" typed constant in Teengine unit:
Example in Spanish: PercentOf := 'sobre';
Output: "12 % sobre 1234"
LabelPercentTotal
Shows the point Label toghether with the resulting "PercentTotal" style. The TChart Series.PercentFormat property is used to format the percent value.
Example: "Cars 12 % of 1234"
XValue
Shows the point XValue (same as Value but with X values instead of Y values).
Example: "21/6/2003"
XY
Shows the point XValue and YValue.
Example: "21/6/2003 356"
See Also
SeriesMarks Class | SeriesMarks Members | Steema.TeeChart.Styles Namespace