How percent and quantity in SSRS Pie Chart

I have a pie chart generated using SSRS. I would like to show both the graph and the percentage in a pie chart.

Now I can show the score in pie charts, as well as in the report.

I want to show the name of the section, as well as the percentage specified directly.

Example:

ALD 38% 56

please help me with these properties.

I am using VS 2008

+7
pie-chart reporting-services ssrs-2008
source share
2 answers

write down the expression for serial mark data like -

=Sum(Fields!DATA.Value, "Chart1_SeriesGroup1") & "(" & Sum(Fields!DATA.Value, "Chart1_SeriesGroup1") * 100 /Sum(Fields!DATA.Value, "DataSet1") & "%)" 

Here Chart1_SeriesGroup1 is the name of the group, if you look at setting up a series of series

enter image description here

Here DataSet1 is the name of the dataset

Here is the final conclusion

enter image description here

Greetings :-)

+9
source share

1-right click on a chart and select "show data label"

enter image description here

2-right-click on the tag, select "tag label properties"

enter image description here

3- general → label data → set this value = "#PERCENT (#VALY)" enter image description here

4- it will be like this screenshot

enter image description here

+3
source share

All Articles