Table of Contents

Class LabelledSeries

Namespace
Tudormobile.Wpf.Controls
Assembly
Tudormobile.WpfControls.dll

Represents a data series containing a collection of numeric data points and corresponding labels for chart visualization.

public class LabelledSeries : ChartSeries
Inheritance
LabelledSeries
Inherited Members

Remarks

This class extends ChartSeries by adding a collection of labels that correspond to each data point. Each label represents the category or identifier for the corresponding value in the DataPoints collection. Ensure the Labels collection has the same count as DataPoints for proper chart rendering.

Properties

Labels

Gets or sets the collection of labels corresponding to each data point.

public ObservableCollection<string> Labels { get; set; }

Property Value

ObservableCollection<string>

Remarks

Each label represents the category or identifier for the corresponding value in the DataPoints collection. Ensure this collection has the same count as DataPoints for proper chart rendering.