Class RadzenSpiderSeries<TItem>
Inheritance
RadzenSpiderSeries<TItem>
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenSpiderSeries<TItem> : RadzenComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Type Parameters
Constructors
RadzenSpiderSeries()
Declaration
public RadzenSpiderSeries()
Properties
CategoryProperty
Gets or sets the property that provides the category values for this series.
Declaration
[Parameter]
public string CategoryProperty { get; set; }
Property Value
Chart
Declaration
[CascadingParameter]
public RadzenSpiderChart? Chart { get; set; }
Property Value
Data
Gets or sets the data for this series.
Declaration
[Parameter]
public IEnumerable<TItem> Data { get; set; }
Property Value
Gets or sets the format string for values.
Declaration
[Parameter]
public string FormatString { get; set; }
Property Value
IsVisible
Gets whether the series is visible.
Declaration
public bool IsVisible { get; set; }
Property Value
MarkerSize
Gets or sets the marker size for this series.
Declaration
[Parameter]
public double MarkerSize { get; set; }
Property Value
MarkersVisible
Gets or sets whether markers are visible for this series.
Declaration
[Parameter]
public bool MarkersVisible { get; set; }
Property Value
StrokeWidth
Gets or sets the stroke width for this series.
Declaration
[Parameter]
public double StrokeWidth { get; set; }
Property Value
Title
Gets or sets the series title.
Declaration
[Parameter]
public string Title { get; set; }
Property Value
Gets or sets the value formatter function.
Declaration
[Parameter]
public Func<double, string> ValueFormatter { get; set; }
Property Value
ValueProperty
Gets or sets the property that provides the values for this series.
Declaration
[Parameter]
public string ValueProperty { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Overrides
Dispose()
Disposes the component and removes it from the parent chart.
Declaration
MeasureLegend()
Measures the legend text width for this series.
Declaration
public double MeasureLegend()
Returns
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Overrides
RenderLegendItem()
Renders the legend item for this series.
Declaration
public RenderFragment RenderLegendItem()
Returns
RenderLegendItem(bool)
Renders the legend item for this series.
Declaration
protected virtual RenderFragment RenderLegendItem(bool clickable)
Parameters
| Type |
Name |
Description |
| bool |
clickable |
|
Returns
Implements