You can use the TitleText property to set the Title position so it does not overlap with the percentage value.
e.g. :
Axis secondaryYAxis = chart.Axis( StandardAxis.SecondaryY );
secondaryYAxis.TitleText.Offset = new PointF( secondaryYAxis.TitleText.Offset.X – 20, secondaryYAxis.TitleText.Offset.Y );
Or you can use the Text property to set the labels position to do the same.
e.g.:
secondaryYAxis.Text.Offset = new PointF( secondaryYAxis.Text.Offset.X – 20, secondaryYAxis.Text.Offset.Y );
Imported from legacy forums. Posted by André (had 220 views)