briskovich
briskovich

Reputation: 690

How do you add an additional column to pie chart legend in SSRS?

I am re-building a Crystal Report in SSRS. This is how I need the legend to render:

enter image description here

This is how the legend renders currently:

enter image description here

How do I add the number values to the legend in SSRS??

Upvotes: 0

Views: 1133

Answers (1)

Konrad Z.
Konrad Z.

Reputation: 1652

  1. Right click on your chart
  2. Go to Series Properties
  3. Go to Label tab
  4. Choose f(x) button next to "Custom legend text"
  5. Type expression like: =Fields!yourCategory.Value & " " & Fields!quantity.Value

or

When you are not passing Percentages values from your dataset:

  1. Paste this #AXISLABEL #PERCENT in "Custom legend text"

Upvotes: 2

Related Questions