Skip to main content
All docs
V26.1
  • DxChartArgumentAxis.CustomPositionAxisName Property

    Specifies the name of the value axis that the argument axis intersects on the CustomPosition value.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v26.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string CustomPositionAxisName { get; set; }

    Property Value

    Type Description
    String

    The axis name.

    Remarks

    Use the CustomPositionAxisName in combination with the CustomPosition property to shift the argument axis in multi-axis charts.

    In the following code snippet, the argument axis intersects the “Temperature” value axis at the value of 45:

    <DxChart Data="@forecasts">
        <DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
                           ValueField="@((WeatherForecast i) => i.TemperatureC)"
                           Name="Temperature, C" />
        <DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
                           ValueField="@((WeatherForecast i) => i.TemperatureF)"
                           Name="Temperature, F" />
        <DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
                           ValueField="@((WeatherForecast i) => i.Precipitation)"
                           Name="Precipitation"
                           Axis="Precipitation" />
        <DxChartArgumentAxis CustomPosition="45" CustomPositionAxisName="Temperature" />
        <DxChartValueAxis Name="Temperature">
            <DxChartAxisTitle Text="Temperature" />
        </DxChartValueAxis>
        <DxChartValueAxis Name="Precipitation" Alignment="ChartAxisAlignment.Far">
            <DxChartAxisTitle Text="Precipitation" />
        </DxChartValueAxis>
    </DxChart>
    

    Argument axis custom position

    See Also