Represents the base class for all IgbDataChart numeric axes.
InheritanceSystem.Object
IgbNumericAxisBase
ImplementsSystem.IDisposable
Namespace: IgniteUI.Blazor.Controls Assembly: IgniteUI.Blazor.dll Syntaxpublic class IgbNumericAxisBase : IgbAxis, JsonSerializable, IDisposable
Constructors IgbNumericAxisBase() Declaration
public IgbNumericAxisBase()
Properties AbbreviatedLabelFormat
Gets or sets the label format string to use for the label.
Declarationpublic string AbbreviatedLabelFormat { get; set; }
Property Value Type Description System.String AbbreviatedLabelFormatSpecifiers
Gets or sets the format specifiers to use with the AbbreviatedLabelFormat string.
Declarationpublic IgbFormatSpecifierCollection AbbreviatedLabelFormatSpecifiers { get; set; }
Property Value AbbreviateLargeNumbers
A boolean indicating whether or not to abbreviate large numbers.
Declarationpublic bool AbbreviateLargeNumbers { get; set; }
Property Value Type Description System.Boolean ActualInterval
Gets the effective value for the current Interval.
Declarationpublic double ActualInterval { get; set; }
Property Value Type Description System.Double ActualIntervalChanged Declaration
public Action<double> ActualIntervalChanged { get; set; }
Property Value Type Description System.Action<System.Double> ActualIntervalChangedScript Declaration
public string ActualIntervalChangedScript { get; set; }
Property Value Type Description System.String ActualIsLogarithmic
Determines if the axis has a valid logarithmic scale.
Declarationpublic bool ActualIsLogarithmic { get; set; }
Property Value Type Description System.Boolean ActualMaximumValue
Gets the effective maximum value for the current numeric axis object.
Declarationpublic double ActualMaximumValue { get; set; }
Property Value Type Description System.Double ActualMaximumValueChanged Declaration
public Action<double> ActualMaximumValueChanged { get; set; }
Property Value Type Description System.Action<System.Double> ActualMaximumValueChangedScript Declaration
public string ActualMaximumValueChangedScript { get; set; }
Property Value Type Description System.String ActualMaxPrecision Declaration
public int ActualMaxPrecision { get; set; }
Property Value Type Description System.Int32 ActualMinimumValue
Gets the effective minimum value for the current numeric axis object.
Declarationpublic double ActualMinimumValue { get; set; }
Property Value Type Description System.Double ActualMinimumValueChanged Declaration
public Action<double> ActualMinimumValueChanged { get; set; }
Property Value Type Description System.Action<System.Double> ActualMinimumValueChangedScript Declaration
public string ActualMinimumValueChangedScript { get; set; }
Property Value Type Description System.String ActualMinorInterval
Gets the effective value for the current MinorInterval.
Declarationpublic double ActualMinorInterval { get; set; }
Property Value Type Description System.Double ActualMinorIntervalChanged Declaration
public Action<double> ActualMinorIntervalChanged { get; set; }
Property Value Type Description System.Action<System.Double> ActualMinorIntervalChangedScript Declaration
public string ActualMinorIntervalChangedScript { get; set; }
Property Value Type Description System.String ActualVisibleMaximumValue
Gets the effective visible maximum value for the current numeric axis object.
Declarationpublic double ActualVisibleMaximumValue { get; set; }
Property Value Type Description System.Double ActualVisibleMinimumValue
Gets the effective minimum value for the current numeric axis object.
Declarationpublic double ActualVisibleMinimumValue { get; set; }
Property Value Type Description System.Double AutoRangeBufferMode
Gets or sets how the numeric axis will adjust its range buffer to less closely fix the data from the series.
Declarationpublic AxisRangeBufferMode AutoRangeBufferMode { get; set; }
Property Value FavorLabellingScaleEnd
Gets or sets whether the axis should favor emitting a label at the end of the scale.
Declarationpublic bool FavorLabellingScaleEnd { get; set; }
Property Value Type Description System.Boolean FormatAbbreviatedLabelScript Declaration
public string FormatAbbreviatedLabelScript { get; set; }
Property Value Type Description System.String Interval
Gets or sets the Interval property.
Declarationpublic double Interval { get; set; }
Property Value Type Description System.Double IsFormattingAbbreviatedLargeNumber Declaration
public bool IsFormattingAbbreviatedLargeNumber { get; set; }
Property Value Type Description System.Boolean IsLogarithmic
Gets or sets the IsLogarithmic property.
Declarationpublic bool IsLogarithmic { get; set; }
Property Value Type Description System.Boolean LogarithmBase
Gets or sets the LogarithmBase property.
Declarationpublic int LogarithmBase { get; set; }
Property Value Type Description System.Int32 MaximumValue
Gets or sets the MaximumValue property.
Declarationpublic double MaximumValue { get; set; }
Property Value Type Description System.Double MaxPrecision Declaration
public int MaxPrecision { get; set; }
Property Value Type Description System.Int32 MinimumValue
Gets or sets the MinimumValue property.
Declarationpublic double MinimumValue { get; set; }
Property Value Type Description System.Double MinorInterval
Gets or sets the MinorInterval property.
Declarationpublic double MinorInterval { get; set; }
Property Value Type Description System.Double ReferenceValue
Gets or sets the ReferenceValue property.
Declarationpublic double ReferenceValue { get; set; }
Property Value Type Description System.Double ShouldApplyMaxPrecisionWhenZoomed Declaration
public bool ShouldApplyMaxPrecisionWhenZoomed { get; set; }
Property Value Type Description System.Boolean 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 GetCurrentActualInterval() Declaration
public double GetCurrentActualInterval()
Returns Type Description System.Double GetCurrentActualIntervalAsync() Declaration
public Task<double> GetCurrentActualIntervalAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> GetCurrentActualMaximumValue() Declaration
public double GetCurrentActualMaximumValue()
Returns Type Description System.Double GetCurrentActualMaximumValueAsync() Declaration
public Task<double> GetCurrentActualMaximumValueAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> GetCurrentActualMinimumValue() Declaration
public double GetCurrentActualMinimumValue()
Returns Type Description System.Double GetCurrentActualMinimumValueAsync() Declaration
public Task<double> GetCurrentActualMinimumValueAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> GetCurrentActualMinorInterval() Declaration
public double GetCurrentActualMinorInterval()
Returns Type Description System.Double GetCurrentActualMinorIntervalAsync() Declaration
public Task<double> GetCurrentActualMinorIntervalAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> GetFullRange() Declaration
public override double[] GetFullRange()
Returns Type Description System.Double[] Overrides GetFullRangeAsync() Declaration
public override Task<double[]> GetFullRangeAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double[]> Overrides UnscaleValue(Double) Declaration
public virtual double UnscaleValue(double unscaledValue)
Parameters Type Name Description System.Double unscaledValue Returns Type Description System.Double UnscaleValueAsync(Double)
Unscales a value from screen space into axis space.
Declarationpublic virtual Task<double> UnscaleValueAsync(double unscaledValue)
Parameters Type Name Description System.Double unscaledValue
The scaled value in screen coordinates to unscale into axis space.
Returns Type Description System.Threading.Tasks.Task<System.Double> ImplementsSystem.IDisposable
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4