MindFusion.Charting Programmer's Guide

AxesChart.Horizontal Property

See Also
 





Gets or sets the orientation of the chart.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public bool Horizontal { get; set; }

Visual Basic  Copy Code

Public Property Horizontal As Boolean

 Property Value

true if the chart is horizontal; otherwise false.

 Remarks

In horizontal bar charts, the Data property specifies values for the X-axis. In vertical bar charts, the Data property specifies values for the Y-axis.

Line charts use data from both XData and YData lists, no matter their orientation. Summary operations are performed on XData for horizontal charts and YData for vertical ones. Bubble charts have no orientation.

Default value for the Horizontal property is false.

 See Also