New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

Initializes a new instance of the AxisModel class.

C#
public AxisModel()

Properties

Gets the bottom/left tick present on the axis. Valid when the axis is loaded.

C#
public virtual AxisTickModel BottomOrLeftTick { get; }

Gets or sets the horizontal location of an axis (rendered vertically) in relation to the plot area.

C#
public AxisHorizontalLocation HorizontalLocation { get; set; }
Property Value:

The horizontal location.

Gets or sets a value indicating whether this axis is inverse.

C#
public bool IsInverse { get; set; }

Gets or sets a value that determines how the axis labels will be laid out when they are overlapping each other.

C#
public AxisLabelFitMode LabelFitMode { get; set; }

Gets or sets the string that formats the labels of the axis.

C#
public string LabelFormat { get; set; }

Gets or sets the step at which labels are positioned.

C#
public int LabelInterval { get; set; }

Gets or sets index offset from the first label to be displayed.

C#
public int LabelOffset { get; set; }

Gets all the labels currently present on the axis.

C#
public ElementCollection<AxisLabelModel> Labels { get; }

Gets or sets the strategy that defines the last axis label visibility.

C#
public AxisLastLabelVisibility LastLabelVisibility { get; set; }

Gets or sets the thickness of the axis line.

C#
public double LineThickness { get; set; }

Gets or sets the length of a single tick presented on the axis.

C#
public double MajorTickLength { get; set; }

Gets or sets index offset of the first tick to be displayed.

C#
public int MajorTickOffset { get; set; }

Gets the collection with all the major ticks, currently present on the axis.

C#
public IEnumerable<AxisTickModel> MajorTicks { get; }

Gets or sets a value indicating whether labels will be displayed on this axis.

C#
public bool ShowLabels { get; set; }

Gets or sets the thickness of a single tick presented on the axis.

C#
public double TickThickness { get; set; }

Gets the AxisTitleModel instance that represents the title of this axis.

C#
public AxisTitleModel Title { get; }

Gets the top/right tick present on the axis. Valid when the axis is loaded.

C#
public virtual AxisTickModel TopOrRightTick { get; }

Gets or sets the type (X or Y) of this instance.

C#
public AxisType Type { get; set; }

Gets or sets the vertical location of an axis (rendered horizontally) in relation to the plot area.

C#
public AxisVerticalLocation VerticalLocation { get; set; }
Property Value:

The vertical location.

Methods

Builds the ticks and labels.

C#
protected virtual bool BuildTicksAndLabels(RadSize availableSize)
Parameters:availableSizeRadSize

Size of the available.

Returns:

bool

Updates the layout strategy.

C#
protected void UpdateLayoutStrategy()