Class NumericalSparkAxisModel
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Sparkline
Assembly: Telerik.WinControls.UI.dll
Syntax
public abstract class NumericalSparkAxisModel : SparkAxisModel, IDisposable, INotifyPropertyChanged
Constructors
NumericalSparkAxisModel()
Initializes a new instance of the NumericalSparkAxisModel class.
Declaration
protected NumericalSparkAxisModel()
Properties
ActualRange
Gets the actual range (minimum and maximum values) used by the axis.
Declaration
public SparkValueRange<double> ActualRange { get; }
Property Value
SparkValueRange<System.Double>
|
DesiredTickCount
Gets or sets the number of the ticks available on the axis. If a value less than 2 is set, the property is reset to its default value.
Declaration
public int DesiredTickCount { get; set; }
Property Value
System.Int32
|
MajorStep
Gets or sets the user-defined major step of the axis.
Declaration
public double MajorStep { get; set; }
Property Value
System.Double
|
Maximum
Gets or sets the user-defined maximum of the axis.
Declaration
public double Maximum { get; set; }
Property Value
System.Double
|
Minimum
Gets or sets the user-defined minimum of the axis.
Declaration
public double Minimum { get; set; }
Property Value
System.Double
|
RangeExtendDirection
Gets or sets a value that specifies how the auto-range of this axis will be extended so that each data point is visualized in the best possible way.
Declaration
public NumericalAxisRangeExtendDirection RangeExtendDirection { get; set; }
Property Value
NumericalAxisRangeExtendDirection
|
Methods
TransformValue(Object)
Transforms the value.
Declaration
public virtual object TransformValue(object value)
Parameters
System.Object
value
The value. |
Returns
System.Object
|