Displaying Axis and Annotations on the Opposite Side of the Chart
To display the horizontal axis and annotations on the opposite side of the chart you can use the auxiliary axis and position the axis at the top with the title only like the following code:
c1Chart1.View.Axes.Add(new Axis()
{
AxisType = AxisType.X,
Position = AxisPosition.Far,
ItemsSource = new string[] { ""},
Title = "Axis title",
});
•C#
c1Chart1.View.Axes.Add(new Axis()
{
AxisType = AxisType.X,
Position = AxisPosition.Far,
ItemsSource = new string[] { ""},
Title = "Axis title",
});