Class RadzenTicks
Tick configuration of IChartAxis.
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenTicks : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Constructors
RadzenTicks()
Tick configuration of IChartAxis.
Declaration
public RadzenTicks()
Properties
ChartAxis
The axis which this configuration applies to.
Declaration
[CascadingParameter]
public AxisBase ChartAxis { set; }
Property Value
Type | Description |
---|---|
AxisBase |
LineType
Specifies the type of line used to render the ticks.
Declaration
[Parameter]
public LineType LineType { get; set; }
Property Value
Type | Description |
---|---|
LineType |
Stroke
Specifies the color of the ticks lines.
Declaration
[Parameter]
public string Stroke { get; set; }
Property Value
Type | Description |
---|---|
string |
StrokeWidth
Specifies the width of the tick lines. Set to 1
by default.
Declaration
[Parameter]
public double StrokeWidth { get; set; }
Property Value
Type | Description |
---|---|
double |
Template
Gets or sets the template.
Declaration
[Parameter]
public RenderFragment<TickTemplateContext> Template { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment<TickTemplateContext> | The template. |