Class IgbDataLegendStylingColumnEventArgs
Represents styling event args for a column in data legend
Inheritance
System.Object
IgbDataLegendStylingColumnEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbDataLegendStylingColumnEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbDataLegendStylingColumnEventArgs()
Declaration
public IgbDataLegendStylingColumnEventArgs()
Properties
ColumnIndex
Declaration
public int ColumnIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
GroupName
Declaration
public string GroupName { get; set; }
Property Value
| Type |
Description |
| System.String |
|
LabelText
Gets or sets label text displayed before value text in the column
Declaration
public string LabelText { get; set; }
Property Value
| Type |
Description |
| System.String |
|
LabelTextColor
Gets or sets color of label text
Declaration
public string LabelTextColor { get; set; }
Property Value
| Type |
Description |
| System.String |
|
SeriesIndex
Declaration
public int SeriesIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
SeriesTitle
Declaration
public string SeriesTitle { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
UnitsText
Gets or sets unit text displayed after value text in the column
Declaration
public string UnitsText { get; set; }
Property Value
| Type |
Description |
| System.String |
|
UnitsTextColor
Gets or sets color of value text
Declaration
public string UnitsTextColor { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueAbbreviation
Gets a mode used to abbreviate original value to ValueText
Declaration
public DataAbbreviationMode ValueAbbreviation { get; set; }
Property Value
ValueMemberLabel
Declaration
public string ValueMemberLabel { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueMemberPath
Gets data column named that corresponds to the value
Declaration
public string ValueMemberPath { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueOriginal
Gets original value of series without any abbreviation or formatting
Declaration
public double ValueOriginal { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
ValueText
Gets or sets value text displayed value text in the column
Declaration
public string ValueText { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ValueTextColor
Gets or sets color of unit text
Declaration
public string ValueTextColor { 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
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