Skip to main content

ChartDataPrepareSettingsBuilder.ConvertToAxisDataType(Boolean) Method

Converts data coming from a data source into a data type supported by the axis. Mirrors the client-side convertToAxisDataType option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ChartDataPrepareSettingsBuilder ConvertToAxisDataType(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
ChartDataPrepareSettingsBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Chart()
    .DataPrepareSettings(settings => settings
        .ConvertToAxisDataType(true)
    )
)
See Also