Skip to main content
All docs
V25.1
  • ChartValueAxisBuilder.AggregatedPointsPosition(AggregatedPointsPosition) Method

    Specifies the start position of the aggregated series points in the aggregation interval. Applies only to axes of continuous and logarithmic types. Mirrors the client-side aggregatedPointsPosition option.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public ChartValueAxisBuilder AggregatedPointsPosition(
        AggregatedPointsPosition value
    )

    Parameters

    Name Type Description
    value AggregatedPointsPosition

    The option value.

    Returns

    Type Description
    ChartValueAxisBuilder

    A reference to this instance after the method is called.

    Remarks

    Use the following notation to set the option’s value:

    @(Html.DevExtreme().Chart()
        .ValueAxis(valueAxis => {
            valueAxis.Add().AggregatedPointsPosition(AggregatedPointsPosition.CrossTicks);
        })
    )
    
    See Also