Changing the Legend Orientation and Position
To orient the chart legend horizontally and at the Bottom Center of the chart control, use the following code:
C# |
Copy Code
|
C1ChartLegend.Orientation = Horizontal;
C1ChartLegend.Position = C1.WPF.C1Chart.LegendPosition.BottomCenter;
|