Class PivotChartErrorSettings
Allows options for displaying and customizing error bar for individual point in a series.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotChartErrorSettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
PivotChartErrorSettings()
Declaration
public PivotChartErrorSettings()
Properties
Color
Allows to set the color for stroke of the error bar, which accepts value in hex, rgba as a valid CSS color string.
Declaration
[Parameter]
public string Color { get; set; }
Property Value
| Type |
|---|
| string |
Direction
Allows to set the direction of the error bar . They are both - Renders both direction of error bar. minus - Renders minus direction of error bar. plus - Renders plus direction error bar.
Declaration
[Parameter]
public PivotChartErrorBarDirection Direction { get; set; }
Property Value
| Type |
|---|
| PivotChartErrorBarDirection |
ErrorBarCap
Allows options for customizing the cap of the error bar.
Declaration
[Parameter]
public PivotChartErrorBarCapSettings ErrorBarCap { get; set; }
Property Value
| Type |
|---|
| PivotChartErrorBarCapSettings |
HorizontalError
Allows to set the horizontal error of the error bar.
Declaration
[Parameter]
public int HorizontalError { get; set; }
Property Value
| Type |
|---|
| int |
HorizontalNegativeError
Allows to set the horizontal negative error of the error bar.
Declaration
[Parameter]
public int HorizontalNegativeError { get; set; }
Property Value
| Type |
|---|
| int |
HorizontalPositiveError
Allows to set the horizontal positive error of the error bar.
Declaration
[Parameter]
public int HorizontalPositiveError { get; set; }
Property Value
| Type |
|---|
| int |
Mode
Allows to set the mode of the error bar . They are Vertical - Renders a vertical error bar. Horizontal - Renders a horizontal error bar. Both - Renders both side error bar.
Declaration
[Parameter]
public PivotChartErrorBarMode Mode { get; set; }
Property Value
| Type |
|---|
| PivotChartErrorBarMode |
Type
Allows to set the type of the error bar . They are Fixed - Renders a fixed type error bar. Percentage - Renders a percentage type error bar. StandardDeviation - Renders a standard deviation type error bar. StandardError -Renders a standard error type error bar. Custom -Renders a custom type error bar.
Declaration
[Parameter]
public PivotChartErrorBarType Type { get; set; }
Property Value
| Type |
|---|
| PivotChartErrorBarType |
VerticalError
Allows to set the vertical error of the error bar.
Declaration
[Parameter]
public int VerticalError { get; set; }
Property Value
| Type |
|---|
| int |
VerticalNegativeError
Allows to set the vertical negative error of the error bar.
Declaration
[Parameter]
public int VerticalNegativeError { get; set; }
Property Value
| Type |
|---|
| int |
VerticalPositiveError
Allows to set the vertical positive error of the error bar.
Declaration
[Parameter]
public int VerticalPositiveError { get; set; }
Property Value
| Type |
|---|
| int |
Visible
If set true, error bar for data gets rendered.
Declaration
[Parameter]
public bool Visible { get; set; }
Property Value
| Type |
|---|
| bool |
Width
Allows to set the stroke width of the error bar..
Declaration
[Parameter]
public int Width { get; set; }
Property Value
| Type |
|---|
| int |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |
Overrides
Dispose(bool)
Dispose unmanaged resources in the component.
Declaration
protected override void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing |
Overrides
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
Declaration
protected override Task OnInitializedAsync()
Returns
| Type | Description |
|---|---|
| Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
Overrides
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
Declaration
protected override Task OnParametersSetAsync()
Returns
| Type | Description |
|---|---|
| Task | A System.Threading.Tasks.Task representing any asynchronous operation. |