Skip to main content

Strip(String, Double, Double) Constructor

Initializes a new instance of the Strip class with the specified name, and minimum and maximum numeric values.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public Strip(
    string name,
    double minValue,
    double maxValue
)

Parameters

Name Type Description
name String

A String that specifies the name of the strip. This value is assigned to the ChartElementNamed.Name property.

minValue Double

A Double value that specifies the minimum numeric value of the strip. This value is assigned to the StripLimit.AxisValue property of the object returned by the Strip.MinLimit property.

maxValue Double

A Double value that specifies the maximum numeric value of the strip. This value is assigned to the StripLimit.AxisValue property of the object returned by the Strip.MaxLimit property.

See Also