Show / Hide Table of Contents

Class IgbSizeScale

Represents a scale that is used determine an object's size.

Inheritance
System.Object
BaseRendererElement
IgbSizeScale
Implements
JsonSerializable
Inherited Members
BaseRendererElement._name
BaseRendererElement._cachedSerializedContent
BaseRendererElement.BuildRenderTree(RenderTreeBuilder)
BaseRendererElement.OnElementNameChanged(BaseRendererElement, String, String)
BaseRendererElement.InvokeMethod(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodSync(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelper(String, String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelperSync(String, String, Object[], String[], ElementReference[])
BaseRendererElement.IsPropDirty(String)
BaseRendererElement.Serialize(SerializationContext, String)
BaseRendererElement.Serialize()
BaseRendererElement.EnsureValid()
BaseRendererElement.FromEventJson(BaseRendererControl, Dictionary<String, Object>)
BaseRendererElement.ToEventJson(BaseRendererControl, Dictionary<String, Object>)
BaseRendererElement.SetResourceStringAsync(String, String, String)
BaseRendererElement.SetResourceStringAsync(String, String)
BaseRendererElement.IgBlazor
BaseRendererElement.IsComponentRooted
BaseRendererElement.ParentTypeName
BaseRendererElement.UseDirectRender
BaseRendererElement.ChildContent
BaseRendererElement.SupportsVisualChildren
BaseRendererElement.Name
BaseRendererElement.Parent
BaseRendererElement.MethodTarget
BaseRendererElement.CurrParent
Namespace: IgniteUI.Blazor.Controls
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbSizeScale : BaseRendererElement, JsonSerializable

Constructors

IgbSizeScale()

Declaration
public IgbSizeScale()

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
BaseRendererElement.Type

Methods

EnsureModulesLoaded()

Declaration
protected override void EnsureModulesLoaded()
Overrides
BaseRendererElement.EnsureModulesLoaded()

FindByName(String)

Declaration
public override object FindByName(string name)
Parameters
Type Name Description
System.String name
Returns
Type Description
System.Object
Overrides
BaseRendererElement.FindByName(String)

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

JsonSerializable