DxPolarChart<T>.UseSpiderWeb Property
Specifies whether to display the chart grid as a spider web.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(false)]
[Parameter]
public bool UseSpiderWeb { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
In a polar coordinate system, the argument axis is a circle:
When argument values in the chart’s data source belong to different categories, you may want to display the values at corresponding discrete positions on the argument axis. In this case, the argument axis and grid lines of the value axis are displayed as straight lines:
To make the argument axis discrete, set the UseSpiderWeb
property to true
:
<DxPolarChart Data=@DataSource UseSpiderWeb="true">
@* ... *@
</DxPolarChart>
See Also