Class IgbAnchoredCategorySeries
Represents the base class for all IgbDataChart anchored category/value series.
Inheritance
System.Object
IgbAnchoredCategorySeries
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbAnchoredCategorySeries : IgbCategorySeries, JsonSerializable, IDisposable
Constructors
IgbAnchoredCategorySeries()
Declaration
public IgbAnchoredCategorySeries()
Properties
ActualTrendLineBrush
Gets the effective TrendLineBrush for this series.
Declaration
public string ActualTrendLineBrush { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ConsolidatedItemHitTestBehavior
Determines the item returned in hit-testing when the pointer is over an object which represents several consolidated items.
Declaration
public ConsolidatedItemHitTestBehavior ConsolidatedItemHitTestBehavior { get; set; }
Property Value
HighlightedValueMemberPath
Gets or sets the value mapping property for the current series object.
Declaration
public string HighlightedValueMemberPath { get; set; }
Property Value
| Type |
Description |
| System.String |
|
MarkerCollisionAvoidance
The desired behavior for markers in this series which are placed too close together for the current view, resulting in a collision.
Declaration
public CategorySeriesMarkerCollisionAvoidance MarkerCollisionAvoidance { get; set; }
Property Value
TrendLineBrush
Gets or sets the brush to use to draw the trend line.
Declaration
public string TrendLineBrush { get; set; }
Property Value
| Type |
Description |
| System.String |
|
TrendLineDashArray
Gets or sets a collection of double values that indicate the pattern of dashes and gaps that
is used to draw the trend line for the current series object.
Declaration
public double[] TrendLineDashArray { get; set; }
Property Value
| Type |
Description |
| System.Double[] |
|
TrendLinePeriod
Gets or sets the trend line period for the current series.
Declaration
public int TrendLinePeriod { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
TrendLineThickness
Gets or sets the thickness of the current series object's trend line.
Declaration
public double TrendLineThickness { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
TrendLineType
Gets or sets the trend type for the current series object.
Declaration
public TrendLineType TrendLineType { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
ValueMemberAsLegendLabel
Gets or sets the label displayed before series value in the Data Legend.
Declaration
public string ValueMemberAsLegendLabel { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueMemberAsLegendUnit
Gets or sets the unit displayed after series value in the Data Legend.
Declaration
public string ValueMemberAsLegendUnit { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueMemberPath
Gets or sets the value mapping property for the current series object.
Declaration
public string ValueMemberPath { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Methods
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
GetItemValue(Object, String)
Declaration
public override object GetItemValue(object item, string memberPathName)
Parameters
| Type |
Name |
Description |
| System.Object |
item |
|
| System.String |
memberPathName |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
GetItemValueAsync(Object, String)
Declaration
public override Task<object> GetItemValueAsync(object item, string memberPathName)
Parameters
| Type |
Name |
Description |
| System.Object |
item |
|
| System.String |
memberPathName |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Object> |
|
Overrides
GetMemberPathValue(String)
Declaration
public override string GetMemberPathValue(string memberPathName)
Parameters
| Type |
Name |
Description |
| System.String |
memberPathName |
|
Returns
| Type |
Description |
| System.String |
|
Overrides
GetMemberPathValueAsync(String)
Gets the value of a requested member path from the series.
Declaration
public override Task<string> GetMemberPathValueAsync(string memberPathName)
Parameters
| Type |
Name |
Description |
| System.String |
memberPathName |
The property name of a valid member path for the series
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.String> |
|
Overrides
GetSeriesValueType(ValueLayerValueMode)
Declaration
public override double[] GetSeriesValueType(ValueLayerValueMode mode)
Parameters
Returns
| Type |
Description |
| System.Double[] |
|
Overrides
GetSeriesValueTypeAsync(ValueLayerValueMode)
Gets a numeric value from the numeric axis associated with this series that matches the desired
value mode.
Declaration
public override Task<double[]> GetSeriesValueTypeAsync(ValueLayerValueMode mode)
Parameters
| Type |
Name |
Description |
| ValueLayerValueMode |
mode |
The type of value desired from the series numeric axis.
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Double[]> |
|
Overrides
GetSeriesValueTypePosition(ValueLayerValueMode)
Declaration
public override Point GetSeriesValueTypePosition(ValueLayerValueMode mode)
Parameters
Returns
Overrides
GetSeriesValueTypePositionAsync(ValueLayerValueMode)
Declaration
public override Task<Point> GetSeriesValueTypePositionAsync(ValueLayerValueMode mode)
Parameters
Returns
| Type |
Description |
| System.Threading.Tasks.Task<Point> |
|
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