Gets or sets the orientation of the chart.
Namespace: MindFusion.Reporting
Assembly: MindFusion.Reporting
SyntaxC#
Copy Code
|
|---|
public bool Horizontal { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Horizontal As Boolean |
true if the chart is horizontal; otherwise false.
RemarksIn 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