There is a much easier and more elegant way to do this (at least in SSRS 2008 R2). I am not sure what is available in SSRS 2008 or 2005.
For the axis you want to show small values,
- Set
CrossAt and Minimum properties to a negative number, large enough to display on the report.
- Set the
IntervalOffset property to the same number, but positive.
This will make the other axis of the report be below 0, so that a very low (or even 0) value will still show a small amount of color. The negative value you choose and the max value of the chart will determine how large this color slice is.
Here is an example of this technique to show a small amount of color for 0%:

If you leave out the CrossAt property, then the bars float away from the y-axis, leaving a gap. You must use all the properties I mentioned above to make the color reach past 0 all the way to the axis line.
Important note: the chart in design mode will NOT show correctly. It will display a negative number starting the x-axis instead of 0, but don't believe your eyes. When you actually preview the report, the result will be correct. Don't let yourself be thrown off by the design-mode pre-preview!