Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxPolarChart<T>.UseSpiderWeb Property

Specifies whether to display the chart grid as a spider web.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(false)]
[Parameter]
public bool UseSpiderWeb { get; set; }

#Property Value

Type Default Description
Boolean false

true to display the chart grid as a spider web; otherwise, false.

#Remarks

In a polar coordinate system, the argument axis is a circle:

Polar chart - Grid Lines

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:

Spider Web in Polar Coordinates

To make the argument axis discrete, set the UseSpiderWeb property to true:

Razor
<DxPolarChart Data=@DataSource UseSpiderWeb="true">
    @* ... *@
</DxPolarChart>
See Also