MindFusion.Charting Programmer's Guide

BarChart.BarType Property

See Also
 





Gets or sets the type of the bar chart to be drawn. 

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public BarType BarType { get; set; }

Visual Basic  Copy Code

Public Property BarType As BarType

 Property Value

One of the BarType Enumeration values.

 Remarks

The layout of bars in multi-series charts is set with BarSeriesLayout. Multi-series charts are drawn when BarType is set to BarType.Groups or BarType.Clustered.

Check the BarType enumeration members for additional information what types of bars can be created. Find detailed information how data for the bar chart is specified in the Data property.

Default value for the BarType property is BarType.Single3D.

 See Also