HI i want to start bar from 10 rather than 0. is it possible and how?
chart1.ChartArea["ChartArea1"].AxisY.IsStartedfromZero=false
chart1.ChartArea["ChartArea1"].AxisY.minimum=10 //but this line replace 0
another command to bar start from 10 in ms chart.
you are probably using the the wrong
ChartType, what your code does is shift the baseline fromZeroand instead start from10I presume what you really want is a Range Bar chart wherein you will have 2 values per bar representing the low and high values which would help in representing the bar midway.
Something like Product A low – 10 High 25 now this should show you a bar extending from 10 to 25. In this fashion you can set up for the other points.
EDIT
Now its a bit more clear (from the link) for this you will have to use
and remove the
AxisY.Minimumand you should be fine.