Hello,
I have two custom left axes on my chart. I only want one vertical axis line shown, so the position of both axes is the same. However, this causes my labels to overlap and only show the labels for one axis. Is there a way to move the labels of the second axis without moving the axis itself?
Cheers,
GC
Custom Axes' Labels Overlap
Hi,
one trick could to change the LabelText for one of the axes so they appear wish spaces on the right side :
one trick could to change the LabelText for one of the axes so they appear wish spaces on the right side :
Code: Select all
private void tChart1_GetAxisLabel(object sender, Steema.TeeChart.GetAxisLabelEventArgs e)
{
if ((Steema.TeeChart.Axis)sender==tChart1.Axes.Left)
e.LabelText = e.LabelText + " .";
}
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi,
in that case, I think the best way around this could be to add custom labels for the Axes, in this manner you can specify where do ou want to appear a Axis Label (in which YValue). You can see one example of this in the Demo features project under : All Features -> Welcome ! -> Axes -> Labels -> Custom Labels.
in that case, I think the best way around this could be to add custom labels for the Axes, in this manner you can specify where do ou want to appear a Axis Label (in which YValue). You can see one example of this in the Demo features project under : All Features -> Welcome ! -> Axes -> Labels -> Custom Labels.
Pep Jorge
http://support.steema.com
http://support.steema.com