Skip to main content
All docs
V25.1
  • DxPolarChartAxisLabel.IndentFromAxis Property

    Specifies the indent between an axis and its labels.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(5)]
    [Parameter]
    public double IndentFromAxis { get; set; }

    Property Value

    Type Default Description
    Double 5

    The indent, in pixels.

    Remarks

    The following example changes the indent between argument and value axes and their labels:

    <DxPolarChart Data=@DataSource>
        <DxPolarChartArgumentAxis>
            <DxPolarChartAxisLabel IndentFromAxis="3" />
        </DxPolarChartArgumentAxis>
        <DxPolarChartValueAxis>
            <DxPolarChartAxisLabel IndentFromAxis="15" />
        </DxPolarChartValueAxis>
        <DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                                ValueField="@((DiscretePoint i) => i.Day)" />
    </DxPolarChart>
    

    An Indent Between an Axis and its Labels

    See Also