Class RadzenSpiderChart
RadzenSpiderChart component displays multi-dimensional data in a spider web format.
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenSpiderChart : RadzenComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable, IRadzenSpiderChart
Constructors
RadzenSpiderChart()
RadzenSpiderChart component displays multi-dimensional data in a spider web format.
Declaration
public RadzenSpiderChart()
Properties
ChildContent
Gets or sets child content containing RadzenSpiderSeries components.
Declaration
[Parameter]
public RenderFragment? ChildContent { get; set; }
Property Value
| Type | Description |
|---|---|
| RenderFragment |
ColorScheme
Gets or sets the color scheme of the chart. Available schemes include Pastel (default), Palette, Monochrome, and custom color schemes.
Declaration
[Parameter]
public ColorScheme ColorScheme { get; set; }
Property Value
| Type | Description |
|---|---|
| ColorScheme |
GridShape
Gets or sets the grid shape of the chart.
Declaration
[Parameter]
public SpiderChartGridShape GridShape { get; set; }
Property Value
| Type | Description |
|---|---|
| SpiderChartGridShape |
SeriesClick
Event callback for when a series (or a marker) is clicked. Matches SeriesClick behavior.
Declaration
[Parameter]
public EventCallback<SeriesClickEventArgs> SeriesClick { get; set; }
Property Value
| Type | Description |
|---|---|
| EventCallback<SeriesClickEventArgs> |
ShowMarkers
Gets or sets whether markers are visible.
Declaration
[Parameter]
public bool ShowMarkers { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
ShowTooltip
Gets or sets whether tooltips are shown.
Declaration
[Parameter]
public bool ShowTooltip { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Methods
BuildRenderTree(RenderTreeBuilder)
RadzenSpiderChart component displays multi-dimensional data in a spider web format.
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |
Overrides
GetComponentCssClass()
Gets the component CSS class.
Declaration
protected override string GetComponentCssClass()
Returns
| Type | Description |
|---|---|
| string |
Overrides
OnAfterRenderAsync(bool)
Called by the Blazor runtime.
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | firstRender |
Returns
| Type | Description |
|---|---|
| Task |
Overrides
Resize(double, double)
Called by JavaScript when the chart is resized.
Declaration
[JSInvokable]
public void Resize(double width, double height)
Parameters
| Type | Name | Description |
|---|---|---|
| double | width | |
| double | height |