Category / Section
How to change the legend position in OLAP Chart?
1 min read
You can change the legend position in OLAP Chart using the following codes.
C#
this.OlapChart1.ShowLegend = true; this.OlapChart1.LegendPosition = ChartDock.Left;
VB
Me.OlapChart1.ShowLegend = True Me.OlapChart1.LegendPosition = ChartDock.Left