Hi
I am using Grid chart . I have an issue while displaying the chart. I have attached a file that has a image of the chart that describes my issue very well.
Issue is Y axis values are below than the one of the bar in the bar chart. I want the y axis values to be displayed more than bar chart and the numbers to be dispalyed more than the heighest bar in the bar chart.
In the attached image one of the blue bars is having 200 value. but the values on the y axis are displayed till 190. but i want the values on y axis to be 115. How can we handle this issue?
Thanks and Regards,
kiran
Hi, in the description above There is a mistake it is not 115 it is 215. after correction the sentence will be, "But i want the values on y axis to be 215". I want the display of y axis label values to be higher than all the bar values.
It sounds like you're setting up an interval on your y axis. Are you doing something like this:ultraChart1.Axis.Y.TickmarkStyle = AxisTickStyle.DataInterval;ultraChart1.Axis.Y.TickmarkInterval = 25;
If so, you will have to also set a manual range:ultraChart1.Axis.Y.RangeMin = 15;ultraChart1.Axis.Y.RangeMax = 215;ultraChart1.Axis.Y.RangeType = AxisRangeType.Custom;
You can take it a step further and calculate min and max based on the values in your datasource. Or you can use AxisTickStyle.Smart instead of DataInterval and you should always be able to see the last label.