0
votes

I created Pie report in SSRS 2008 R2. My Problem is want to display data in outside Can anyone give me the steps How to display Names in outside of report

1

1 Answers

4
votes

Go to the Chart Series Properties by either clicking on the chart labels or the data field in the Designer.

Change Label -> Position from Auto:

enter image description here

to Outside:

enter image description here

Chart with Auto position:

enter image description here

Chart with Outside position:

enter image description here

Obviously you'll need to work with the chart/label size to get the Chart looking OK, but hopefully this gets you on the right path.

Edit after comment:

You can set the labels as required under Series Label Properties -> General -> Label data:

enter image description here

Set it to something like:

=Fields!YourField.Value & " " & CStr(Count(Fields!YourField.Value))

as required. Obviously you haven't supplied any details of your DataSet so you'll need to update to suit your requirements.