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

SeriesPoint(DateTime, TimeSpan[]) Constructor

Initializes a new instance of the SeriesPoint class with the specified date-time argument and time-span values.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

public SeriesPoint(
    DateTime argument,
    params TimeSpan[] values
)

Parameters

Name Type Description
argument DateTime

A date-time value that specifies the series point’s argument. This value is assigned to the SeriesPoint.Argument property. Note that if the argument is null (Nothing in Visual Basic), then a ArgumentException will be thrown.

values TimeSpan[]

An array of time-span values that specifies the series points’s values for the specified argument. An individual item of these values can be accessed via the SeriesPoint.Item property.

See Also