ChartSeriesPointImageWidthBuilder.RangeMaxPoint(Double) Method
In This Article
Specifies the width of the image that represents the maximum point in a range area series. Mirrors the client-side rangeMaxPoint option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public ChartSeriesPointImageWidthBuilder RangeMaxPoint(
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()
.Series(series => {
series.Add().Point(point => point
.Image(image => image
.Width(width => width
.RangeMaxPoint(10)
)
)
);
})
)
See Also