Class IgbVerticalStackedSeriesBase
Base class for stacked series with a numeric x-axis and a category y-axis.
Inheritance
System.Object
IgbVerticalStackedSeriesBase
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbVerticalStackedSeriesBase : IgbStackedSeriesBase, JsonSerializable
Constructors
IgbVerticalStackedSeriesBase()
Declaration
public IgbVerticalStackedSeriesBase()
Properties
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
XAxis
Gets or sets the effective x-axis for the current CategorySeries object.
Declaration
public IgbNumericXAxis XAxis { get; set; }
Property Value
XAxisName
Gets or sets the name to use to resolve xAxis from markup.
Declaration
public string XAxisName { get; set; }
Property Value
Type |
Description |
System.String |
|
XAxisScript
Provides a means of setting XAxis in the JavaScript environment.
Declaration
public string XAxisScript { get; set; }
Property Value
Type |
Description |
System.String |
|
YAxis
Gets or sets the effective y-axis for the current CategorySeries object.
Declaration
public IgbCategoryYAxis YAxis { get; set; }
Property Value
YAxisName
Gets or sets the name to use to resolve yAxis from markup.
Declaration
public string YAxisName { get; set; }
Property Value
Type |
Description |
System.String |
|
YAxisScript
Provides a means of setting YAxis in the JavaScript environment.
Declaration
public string YAxisScript { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
BindAxes(IgbAxis[])
Declaration
protected override void BindAxes(IgbAxis[] Axes)
Parameters
Type |
Name |
Description |
IgbAxis[] |
Axes |
|
Overrides
CanUseAsXAxis(Object)
Declaration
public bool CanUseAsXAxis(object axis)
Parameters
Type |
Name |
Description |
System.Object |
axis |
|
Returns
Type |
Description |
System.Boolean |
|
CanUseAsXAxisAsync(Object)
Determine if object can be used as XAxis
Declaration
public Task<bool> CanUseAsXAxisAsync(object axis)
Parameters
Type |
Name |
Description |
System.Object |
axis |
The object to check
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Boolean> |
|
CanUseAsYAxis(Object)
Declaration
public bool CanUseAsYAxis(object axis)
Parameters
Type |
Name |
Description |
System.Object |
axis |
|
Returns
Type |
Description |
System.Boolean |
|
CanUseAsYAxisAsync(Object)
Determine if object can be used as YAxis
Declaration
public Task<bool> CanUseAsYAxisAsync(object axis)
Parameters
Type |
Name |
Description |
System.Object |
axis |
The object to check
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Boolean> |
|
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
GetCategoryWidth()
Declaration
public override double GetCategoryWidth()
Returns
Type |
Description |
System.Double |
|
Overrides
GetCategoryWidthAsync()
Returns the width of the category grouping this series is in.
Declaration
public override Task<double> GetCategoryWidthAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
Overrides
GetOffsetValue()
Declaration
public override double GetOffsetValue()
Returns
Type |
Description |
System.Double |
|
Overrides
GetOffsetValueAsync()
Returns the offset value for this series if grouped on a category axis.
Declaration
public override Task<double> GetOffsetValueAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
Overrides
Implements
System.IDisposable