ChartCommonSeriesSettingsPointImageWidthBuilder.RangeMinPoint(Double) Method
In This Article
Specifies the width of the image that represents the minimum point in a range area series. Mirrors the client-side rangeMinPoint option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public ChartCommonSeriesSettingsPointImageWidthBuilder RangeMinPoint(
double value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Double | The option value. |
#Returns
Type | Description |
---|---|
Chart |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Chart()
.CommonSeriesSettings(settings => settings
.Point(point => point
.Image(image => image
.Width(width => width
.RangeMinPoint(10)
)
)
)
)
)
See Also