sometimes max x-axis range missing in horizontal bar chart 3d, but appears most of the time. any idea? thanks.
Can you provide a little more info about this issue? A screenshot will be good.
Please click the image to see it completely, i highlighted the area where the issue is.
using barchart3d in my page, sometimes doesnt show range of x-axis, it is missing? thanks.
The max range is not displayed, because it is between 2 intervals. If you want to be sure that the max range will show every time, you can set it custom with:
this.ultraChart1.Axis.X.RangeType = AxisRangeType.Custom;
this.ultraChart1.Axis.X.RangeMin = 0;
this.ultraChart1.Axis.X.RangeMax = 12;
actually one of the bar value is 12 still it didnt show the max range 12 in the axis. anyhow i will try the solution you suggested, many thanks.