Page 1 of 1

Display end (maximum) label on bottom axis of a webchart

Posted: Thu Dec 20, 2007 2:24 pm
by 13046001
Hi,
I have a webchart that displays time labels on the bottom axis.
I want a label displayed at the very start (min value) and the very end of the axis (max value). I set

Code: Select all

tChart.Axes.Bottom.Labels.OnAxis = true;
But only the label at the start of the axis is displayed.
The label at the end of the axis is not displayed.
How do I make the webchart show the end label?

Posted: Thu Dec 20, 2007 5:00 pm
by narcis
Hi MeirS,

You could try adding the line below to your code.

Code: Select all

			tChart1.Axes.Bottom.Labels.CustomSize = 0;
Hope this helps!