MindFusion.Charting Programmer's Guide

Position Enumeration

See Also
 





Specifies the position of different chart elements.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum Position

Visual Basic  Copy Code

Public Enumeration Position

JavaScript  Copy Code

// enum
Position = {}

 Members

  Member name Description

Bottom

The item is placed to the bottom.

Left

The item is placed to the left.

Right

The item is placed to the right.

Top

The item is placed to the top.

 Remarks

The enumeration specifies the position of chart items. Currently it is used by the:

  • TitleLabelPosition to specify the position of the axis label.
  • Chart legend  with LegendPosition to specify its allocation as to the chart graphic.
  • The inner axis in radar charts with InnerAxisPosition to specify its position in the chart circle / polygon.

 See Also