Class IgbHorizontalAnchoredCategorySeries
Base class for anchored category series with a category x-axis and a numeric y-axis.
Inheritance
System.Object
IgbHorizontalAnchoredCategorySeries
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbHorizontalAnchoredCategorySeries : IgbAnchoredCategorySeries, JsonSerializable, IDisposable
Constructors
IgbHorizontalAnchoredCategorySeries()
Declaration
public IgbHorizontalAnchoredCategorySeries()
Properties
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
XAxis
Gets or sets the effective x-axis for this series.
Declaration
public IgbCategoryAxisBase 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 this series.
Declaration
public IgbNumericYAxis 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
GetNextOrExactIndex(Point, Boolean)
Declaration
public override int GetNextOrExactIndex(Point world, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Int32 |
|
Overrides
GetNextOrExactIndexAsync(Point, Boolean)
Declaration
public override Task<int> GetNextOrExactIndexAsync(Point world, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Int32> |
|
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
GetPreviousOrExactIndex(Point, Boolean)
Declaration
public override int GetPreviousOrExactIndex(Point world, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Int32 |
|
Overrides
GetPreviousOrExactIndexAsync(Point, Boolean)
Declaration
public override Task<int> GetPreviousOrExactIndexAsync(Point world, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Int32> |
|
Overrides
GetSeriesValue(Point, Boolean, Boolean)
Declaration
public override double GetSeriesValue(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
useInterpolation |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Double |
|
Overrides
GetSeriesValueAsync(Point, Boolean, Boolean)
Declaration
public override Task<double> GetSeriesValueAsync(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
useInterpolation |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Double> |
|
Overrides
GetSeriesValueMarkerBoundingBox(Point)
Declaration
public override Rect GetSeriesValueMarkerBoundingBox(Point world)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
Returns
Overrides
GetSeriesValueMarkerBoundingBoxAsync(Point)
If possible, will return the best available value marker bounding box within the series that has the best value match for the world position provided.
Declaration
public override Task<Rect> GetSeriesValueMarkerBoundingBoxAsync(Point world)
Parameters
| Type |
Name |
Description |
| Point |
world |
The world coordinates for which to get a value marker bounding box for
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<Rect> |
|
Overrides
GetSeriesValuePosition(Point, Boolean, Boolean)
Declaration
public override Point GetSeriesValuePosition(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
useInterpolation |
|
| System.Boolean |
skipUnknowns |
|
Returns
Overrides
GetSeriesValuePositionAsync(Point, Boolean, Boolean)
Declaration
public override Task<Point> GetSeriesValuePositionAsync(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
| Type |
Name |
Description |
| Point |
world |
|
| System.Boolean |
useInterpolation |
|
| System.Boolean |
skipUnknowns |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<Point> |
|
Overrides
Implements
System.IDisposable