ChartArgumentAxisBuilder.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 ChartArgumentAxisBuilder AggregatedPointsPosition(
AggregatedPointsPosition value
)
Parameters
Name | Type | Description |
---|---|---|
value | AggregatedPointsPosition | The option value. |
Returns
Type | Description |
---|---|
ChartArgumentAxisBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Chart()
.ArgumentAxis(axis => axis
.AggregatedPointsPosition(AggregatedPointsPosition.CrossTicks);
)
)
See Also