DxPolarChartArgumentAxis.Color Property
In This Article
Specifies the color of the argument axis.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[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:
Razor
@using System.Drawing
<DxPolarChart>
<DxPolarChartArgumentAxis StartAngle="90"
TickInterval="30"
Color="Color.Purple" />
@* ... *@
</DxPolarChart>
For the value axis, use the DxPolarChartValueAxis.Color property.
See Also