My x-axis labels are a range of DateTime values. I would like to show these at an angle instead of straight up and down like the chart renders them by default. I added new PrimaryX axis to the xamChart.Axes collection, with the Angle property on the Axis.Label set to several different values, but they always rendered up and down like the default.
Does the Axis.Label.Angle property not work the way that I would expect?
You need to add:
chart.Axis.X.Labels.Orientation = TextOrientation.Custom;
Are you referring to an xamchart property? I do not see this property in the xamchart component or on the Series property of the xamchart.