Skip to main content
A newer version of this page is available. .

CustomDrawSeriesPointEventArgs.SecondLabelText Property

Gets or sets the text of a second label for the point currently being painted for specific series views.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public string SecondLabelText { get; set; }

Property Value

Type Description
String

A String representing a second label’s text.

Remarks

Use the SecondLabelText property to change the text of a second label for the point currently being painted when handling the ChartControl.CustomDrawSeriesPoint event. This setting is applicable for series with points containing two values, for example, Side-by-Side Range Bar, Overlapped Range Bar or Bubble. To specify the text of a first label, use the CustomDrawSeriesPointEventArgs.LabelText property.

Note

If the SecondLabelText property is set to Empty or null (Nothing in Visual Basic), this label will be hidden.

See Also