Class IgbStackedBarSeries
Represents a IgbDataChart stacked bar series.
Inheritance
System.Object
IgbStackedBarSeries
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbStackedBarSeries : IgbVerticalStackedSeriesBase, JsonSerializable, IDisposable
Constructors
IgbStackedBarSeries()
Declaration
public IgbStackedBarSeries()
Properties
RadiusX
Gets or sets the x-radius of the ellipse that is used to round the corners of the bar.
Declaration
public double RadiusX { get; set; }
Property Value
Type |
Description |
System.Double |
|
RadiusY
Gets or sets the y-radius of the ellipse that is used to round the corners of the bar.
Declaration
public double RadiusY { get; set; }
Property Value
Type |
Description |
System.Double |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
EnsureModulesLoaded()
Declaration
protected override void EnsureModulesLoaded()
Overrides
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
GetItem(Point)
Declaration
public override object GetItem(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
|
Returns
Type |
Description |
System.Object |
|
Overrides
GetItemAsync(Point)
Gets the item that is the best match for the specified world coordinates.
Declaration
public override Task<object> GetItemAsync(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
The world coordinates to use.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Object> |
|
Overrides
GetItemIndex(Point)
Declaration
public override int GetItemIndex(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
|
Returns
Type |
Description |
System.Int32 |
|
Overrides
GetItemIndexAsync(Point)
Gets the index of the item that resides at the provided world coordinates.
Declaration
public override Task<int> GetItemIndexAsync(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
The world coordinates of the requested item.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Int32> |
|
Overrides
GetItemSpan()
Declaration
public override double GetItemSpan()
Returns
Type |
Description |
System.Double |
|
Overrides
GetItemSpanAsync()
For a category plotted series, returns the current width of the items within the categories. This only returns a value if the items have some form of width (e.g. columns, bars, etc.) otherwise 0 is returned.
Declaration
public override Task<double> GetItemSpanAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
Overrides
Declaration
public override bool ScrollIntoView(object item)
Parameters
Type |
Name |
Description |
System.Object |
item |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
Scrolls the series to display the item for the specified data item.
Declaration
public override Task<bool> ScrollIntoViewAsync(object item)
Parameters
Type |
Name |
Description |
System.Object |
item |
The data item (item) to scroll to.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Boolean> |
|
Overrides
Implements
System.IDisposable