Class PivotChartErrorSettings
Allows options for displaying and customizing error bar for individual point in a series.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotChartErrorSettings : OwningComponentBase
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
public string Color { get; set; }
Property Value
Type |
---|
System.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
public PivotChartErrorBarDirection Direction { get; set; }
Property Value
Type |
---|
PivotChartErrorBarDirection |
ErrorBarCap
Allows options for customizing the cap of the error bar.
Declaration
public PivotChartErrorBarCapSettings ErrorBarCap { get; set; }
Property Value
Type |
---|
PivotChartErrorBarCapSettings |
HorizontalError
Allows to set the horizontal error of the error bar.
Declaration
public int HorizontalError { get; set; }
Property Value
Type |
---|
System.Int32 |
HorizontalNegativeError
Allows to set the horizontal negative error of the error bar.
Declaration
public int HorizontalNegativeError { get; set; }
Property Value
Type |
---|
System.Int32 |
HorizontalPositiveError
Allows to set the horizontal positive error of the error bar.
Declaration
public int HorizontalPositiveError { get; set; }
Property Value
Type |
---|
System.Int32 |
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
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
public PivotChartErrorBarType Type { get; set; }
Property Value
Type |
---|
PivotChartErrorBarType |
VerticalError
Allows to set the vertical error of the error bar.
Declaration
public int VerticalError { get; set; }
Property Value
Type |
---|
System.Int32 |
VerticalNegativeError
Allows to set the vertical negative error of the error bar.
Declaration
public int VerticalNegativeError { get; set; }
Property Value
Type |
---|
System.Int32 |
VerticalPositiveError
Allows to set the vertical positive error of the error bar.
Declaration
public int VerticalPositiveError { get; set; }
Property Value
Type |
---|
System.Int32 |
Visible
If set true, error bar for data gets rendered.
Declaration
public bool Visible { get; set; }
Property Value
Type |
---|
System.Boolean |
Width
Allows to set the stroke width of the error bar..
Declaration
public int Width { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
Dispose(Boolean)
Dispose unmanaged resources in the component.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
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 |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
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 |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |