I am trying to display xaxis labels for each category in my pareto chart and display the labels at a 45 deg. angle. I can rotate the labels fine, but I cannot figure out how to start each label at the end of the tick mark. Below is a snippet of code I'm using so far:
this.XAxisLab.TextFont = new Font("Arial", 8.25f);
this.XAxisLab.TextRotation = -45;
this.XAxisLab.SetOverlapLabelMode(ChartObj.OVERLAP_LABEL_DRAW);
The center of the labels is aligned with the tick marks. See image below. How do I get the rotated text to start at the tip end of the tick marks?
