Skip to main content
All docs
V25.1
  • SeriesPoint(TimeSpan, DateTime[]) Constructor

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

    Namespace: DevExpress.XtraCharts

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

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

    Parameters

    Name Type Description
    argument TimeSpan

    A time-span 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 DateTime[]

    An array of date-time 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