Class IgbSizeScale
Represents a scale that is used determine an object's size.
Inheritance
System.Object
IgbSizeScale
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbSizeScale : BaseRendererElement, JsonSerializable
Constructors
IgbSizeScale()
Declaration
Properties
GlobalMaximum
Gets or sets global maximum value that will be mapped to MaxumumValue of this scale
Declaration
public double GlobalMaximum { get; set; }
Property Value
Type |
Description |
System.Double |
|
GlobalMinimum
Gets or sets global minimum value that will be mapped to MinumumValue of this scale
Declaration
public double GlobalMinimum { get; set; }
Property Value
Type |
Description |
System.Double |
|
IsLogarithmic
Gets or sets whether the scale is logarithmic.
Declaration
public bool IsLogarithmic { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
LogarithmBase
Gets or sets the logarithm base for this scale.
Declaration
public int LogarithmBase { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
MaximumValue
Gets or sets the maximum size (in pixels) for this scale.
Declaration
public double MaximumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
MinimumValue
Gets or sets the minimum size (in pixels) for this scale.
Declaration
public double MinimumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
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
GetCurrentGlobalMaximum()
Declaration
public double GetCurrentGlobalMaximum()
Returns
Type |
Description |
System.Double |
|
GetCurrentGlobalMaximumAsync()
Declaration
public Task<double> GetCurrentGlobalMaximumAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
GetCurrentGlobalMinimum()
Declaration
public double GetCurrentGlobalMinimum()
Returns
Type |
Description |
System.Double |
|
GetCurrentGlobalMinimumAsync()
Declaration
public Task<double> GetCurrentGlobalMinimumAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
Implements