Class IgbCategorySeries
Represents the base class for IgbDataChart category series.
Inheritance
System.Object
IgbCategorySeries
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbCategorySeries : IgbMarkerSeries, JsonSerializable, IDisposable
Constructors
IgbCategorySeries()
Declaration
public IgbCategorySeries()
Properties
AssigningCategoryMarkerStyle
Declaration
public Action<IgbAssigningCategoryMarkerStyleEventArgs> AssigningCategoryMarkerStyle { get; set; }
Property Value
AssigningCategoryMarkerStyleScript
Declaration
public string AssigningCategoryMarkerStyleScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
AssigningCategoryStyle
Declaration
public Action<IgbAssigningCategoryStyleEventArgs> AssigningCategoryStyle { get; set; }
Property Value
AssigningCategoryStyleScript
Declaration
public string AssigningCategoryStyleScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
CategoryCollisionMode
Declaration
public CategoryCollisionMode CategoryCollisionMode { get; set; }
Property Value
IsCustomCategoryMarkerStyleAllowed
Gets or sets whether this category series should allow custom style overrides of its individual marker visuals.
Declaration
public bool IsCustomCategoryMarkerStyleAllowed { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
IsCustomCategoryStyleAllowed
Gets or sets whether this category series should allow custom style overrides of its individual visuals.
Declaration
public bool IsCustomCategoryStyleAllowed { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
IsTransitionInEnabled
Gets or sets whether the series should transition into the plot area when a new data source is assigned.
Note: Transitions are not currently supported for stacked series.
Declaration
public bool IsTransitionInEnabled { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
TransitionInMode
Gets or sets the method by which to animate the data into the chart when the chart data source is swapped.
Note: Transitions are not currently supported for stacked series.
Declaration
public CategoryTransitionInMode TransitionInMode { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
UseHighMarkerFidelity
Sets or Gets whether to increase marker fidelity for extreme data shapes that have lots of Y variation over short X intervals.
Declaration
public bool UseHighMarkerFidelity { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Methods
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 virtual double GetCategoryWidth()
Returns
| Type |
Description |
| System.Double |
|
GetCategoryWidthAsync()
Returns the width of the category grouping this series is in.
Declaration
public virtual Task<double> GetCategoryWidthAsync()
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Double> |
|
GetExactItemIndex(Point)
Declaration
public override double GetExactItemIndex(Point world)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
Returns
| Type |
Description |
| System.Double |
|
Overrides
GetExactItemIndexAsync(Point)
Gets the precise item index, if possible, based on the closeness to the previous or next whole integer. If the series cannot provide this information, GetExactItemIndex will return the same integer value as GetItemIndex.
Declaration
public override Task<double> GetExactItemIndexAsync(Point world)
Parameters
| Type |
Name |
Description |
| Point |
world |
The world position for which to return the index.
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Double> |
|
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 based on world coordinates.
Declaration
public override Task<int> GetItemIndexAsync(Point world)
Parameters
| Type |
Name |
Description |
| Point |
world |
The world coordinates to use.
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Int32> |
|
Overrides
GetOffsetValue()
Declaration
public virtual double GetOffsetValue()
Returns
| Type |
Description |
| System.Double |
|
GetOffsetValueAsync()
Returns the offset value for this series if grouped on a category axis.
Declaration
public virtual Task<double> GetOffsetValueAsync()
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Double> |
|
Implements
System.IDisposable