Reporting Services Chart - Custom Axis Label

若如初见. 提交于 2019-12-03 05:02:11

This is a bit of a hack, but here goes:

  1. First, normalize your values around zero, so the smallest value is -50 and the largest value is 50. You can do this in the chart control itself, no need to change your dataset. Your values are between 0 and 100, so just subtract 50.

  2. Next, under value axis properties -> axis options, set your minimum to -50, maximum to 50, and interval to 50.

  3. Finally, under value axis properties -> Number, select Category as "Custom" and enter this in as the custom format expression: ="Large;Small;Medium"

(that's an excel format code: pos;neg;zero)

You should get something like this:

alt text http://img44.imageshack.us/img44/9011/chartz.png

According to Arbitrary Label for Y axis in SSRS Charts, you can achieve the similar effect by using strip line collection. See How to: Highlight Chart Data by Adding Strip Lines.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!