MindFusion.Charting Programmer's Guide

AxisSettings.SingleSeriesLabels Property

See Also
 





Gets or sets whether the labels from a single series are drawn.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public bool SingleSeriesLabels { get; set; }

Visual Basic  Copy Code

Public Property SingleSeriesLabels As Boolean

 Property Value

true if labels from just one series are taken; false otherwise.

 Remarks

SingleSeriesLabels forces the control to consider the data from just one series when drawing the axis labels. The zero-based index of the series, which provides data for the labels is set with LabelSeriesIndex. The property is considered only when the LabelType is set to AxisLabelType.ChartData.

If SingleSeriesLabels is false, the data from all chart series is drawn.

 See Also