Skip to main content

ChartSeriesPointImageHeightBuilder.RangeMinPoint(Double) Method

Specifies the height 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

public ChartSeriesPointImageHeightBuilder RangeMinPoint(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
ChartSeriesPointImageHeightBuilder

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
                .Height(height => height
                    .RangeMinPoint(10)
                )
            )
        );
    })
)
See Also