Table of Contents

Class TimeSeries

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

Represents a time-series data set that associates data points with specific time values.

public class TimeSeries : ChartSeries
Inheritance
TimeSeries
Inherited Members

Remarks

This class extends ChartSeries by adding a parallel collection of DateTime values that correspond to each data point. This is useful for time-based charts where the X-axis represents time. The TimePoints collection should have the same number of elements as DataPoints.

Properties

TimePoints

Gets or sets the collection of time points that correspond to the data points.

public ObservableCollection<DateTime> TimePoints { get; set; }

Property Value

ObservableCollection<DateTime>

Remarks

Each time point represents the timestamp for the corresponding value in the DataPoints collection. Ensure this collection has the same count as DataPoints for proper chart rendering.