MindFusion.Charting Programmer's Guide

LabelOrientation Enumeration

See Also
 





Specifies different text orientation styles for chart labels.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum LabelOrientation

Visual Basic  Copy Code

Public Enumeration LabelOrientation

JavaScript  Copy Code

// enum
LabelOrientation = {}

 Members

  Member name Description

BottomToTop

The label is rotated 90 degrees counterclockwise.

InColumn

Label letters are drawn in a column, each letter under the previous one.

InRow

The label is drawn in a straight line.

TopToBottom

The label is rotated 90 degrees clockwise.

 Remarks

Label orientation is considered for the TitleLabel, DivisionLabel and the grid labels.

The orientation of the TitleLabel is specified with AxisSettings.TitleLabelOrientation. The orientation of grid labels is specified with XGridLabelsOrientation, YGridLabelsOrientation and Y2GridLabelsOrientation.

 See Also