Class IgbAxisMatcher
Inheritance
System.Object
IgbAxisMatcher
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbAxisMatcher : BaseRendererElement, JsonSerializable
Constructors
IgbAxisMatcher()
Declaration
Properties
AxisType
If set, tries to match an Axis based on its type, to be used with the typed index, if desired.
Declaration
public string AxisType { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Index
If set, tries to match a Axis based on index
Declaration
public int Index { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
MemberPath
If set, tries to match a Axis based on a member path, combined with MemberPathType.
Declaration
public string MemberPath { get; set; }
Property Value
| Type |
Description |
| System.String |
|
MemberPathType
Combined with MemberPath allows you to select a Axis by member path.
Declaration
public string MemberPathType { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Title
If set, tries to match a Axis based on its title.
Declaration
public string Title { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
TypedIndex
If set, indicates that the nth axis of a type should be used.
Declaration
public int TypedIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
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
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements