MindFusion.Charting Programmer's Guide

AxesChart.Horizontal Property

See Also
 





Gets or sets the orientation of the chart.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public bool Horizontal { get; }

Visual Basic  Copy Code

Public ReadOnly Property Horizontal As Boolean

 Property Value

A bool 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