Skip to main content
All docs
V25.1
  • DxPolarChart<T>.UseSpiderWeb Property

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

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [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:

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