Class IgbStackedSeriesBase
Represents a base class for stacked series.
Inheritance
System.Object
IgbStackedSeriesBase
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbStackedSeriesBase : IgbCategorySeries, JsonSerializable, IDisposable
Constructors
IgbStackedSeriesBase()
Declaration
public IgbStackedSeriesBase()
Properties
ActualSeries
Declaration
public IgbStackedSeriesCollection ActualSeries { get; }
Property Value
AutoGenerateSeries
Gets or sets whether series should be automatically generated. Reqiures the use of GroupBy as the ItemsSource.
Declaration
public bool AutoGenerateSeries { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ContentSeries
Declaration
public IgbStackedSeriesCollection ContentSeries { get; }
Property Value
ParentTypeName
Declaration
protected override string ParentTypeName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
ReverseLegendOrder
Gets or sets whether the order of the fragment series should be reversed in the legend.
Declaration
public bool ReverseLegendOrder { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Series
Contains one or more stacked fragments.
Declaration
public IgbStackedSeriesCollection Series { get; set; }
Property Value
SeriesCreated
Declaration
public EventCallback<IgbStackedSeriesCreatedEventArgs> SeriesCreated { get; set; }
Property Value
SeriesCreatedScript
Declaration
public string SeriesCreatedScript { get; set; }
Property Value
Type |
Description |
System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
NotifyIndexedPropertiesChanged()
Declaration
public override void NotifyIndexedPropertiesChanged()
Overrides
NotifyIndexedPropertiesChangedAsync()
Called to notify about changes to indexed-based properties, e.g. Brushes, Outlines, MarkerBrushes, MarkerOutlines and refresh series
Declaration
public override Task NotifyIndexedPropertiesChangedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
ReplayTransitionIn()
Declaration
public override void ReplayTransitionIn()
Overrides
ReplayTransitionInAsync()
Declaration
public override Task ReplayTransitionInAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
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
SimulateHover(Point)
Declaration
public override void SimulateHover(Point point)
Parameters
Type |
Name |
Description |
Point |
point |
|
Overrides
SimulateHoverAsync(Point)
Simulates a pointer hover over the series surface.
Declaration
public override Task SimulateHoverAsync(Point point)
Parameters
Type |
Name |
Description |
Point |
point |
The pointer position relative to the series viewport over which to hover.
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Implements
System.IDisposable