Skip to main content
All docs
V25.1
  • DxPolarChartArgumentAxis.Color Property

    Specifies the color of the argument axis.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public Color Color { get; set; }

    Property Value

    Type Description
    Color

    The axis color.

    Remarks

    Use the Color property to change the color of the argument axis. The following code example colors the axis purple:

    @using System.Drawing
    
    <DxPolarChart>
        <DxPolarChartArgumentAxis StartAngle="90" 
                                  TickInterval="30"
                                  Color="Color.Purple" />
        @* ... *@
    </DxPolarChart>
    

    Colored argument axis

    For the value axis, use the DxPolarChartValueAxis.Color property.

    See Also