NumericalScale
Class
Represents a numerical scale with continuous input domain.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
C#
[AIAssistantDescription("Continuous numeric axis scale. Default for value axes in most chart types. Supports auto-ranging with optional Minimum/Maximum overrides, and configurable MajorStep/MinorStep intervals.")]
public class NumericalScale : NumericalScaleBase
Inheritance: objectScaleNumericalScaleBaseNumericalScale
Inherited Members
Constructors
TODO: Add documentation.
C#
public NumericalScale()
Properties
A collection of NumericalScaleCrossAxisPosition items that defines the where the other axes cross the current one.
C#
public NumericalScaleCrossAxisPositionCollection CrossAxisPositions { get; }
CrossAxisValue
double
Applied when GraphScaleCrossAxisPosition is set to GraphAxisZeroValueMode.Specific. Zero value is where the other axis crosses the current axis.
C#
[Obsolete("The CrossAxisValue property is now obsolete. Please use the CrossAxisPositions property instead.")]
[Browsable(false)]
public double CrossAxisValue { get; set; }
LabelStep
double
Gets or sets the step/interval for the labels on the axis.
C#
public double LabelStep { get; set; }
MajorStep
double
Gets or sets the step/interval for the major ticks/grid lines.
C#
public double MajorStep { get; set; }
MinorStep
double
Gets or sets the step/interval for the minor ticks/grid lines.
C#
public double MinorStep { get; set; }