Class IgbFinancialEventArgs
Parameterizes a financial calculation event.
Inheritance
System.Object
IgbFinancialEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbFinancialEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbFinancialEventArgs()
Declaration
public IgbFinancialEventArgs()
Properties
Count
The number of positions that should be calculated from the start.
Declaration
public int Count { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
DataSource
The data to use for the calculation.
Declaration
public IgbFinancialCalculationDataSource DataSource { get; set; }
Property Value
Position
The beginning position that should be calculated from.
Declaration
public int Position { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
SupportingCalculations
The supporting calculations to use in the calculation.
Declaration
public IgbFinancialCalculationSupportingCalculations SupportingCalculations { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
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