Pie Chart
Pie Chart
135891views 88 19
Getting Started
I developed and tested the reports in this article
using SQL Server Data Tools 2012; a similar set
of reports could be created in Report Builder 3
although the process of creating the various
objects, such as a dataset, would be somewhat
different
SELECT TimeIndex ,
Amount ,
CalendarYear ,
Month ,
ReportingDate ,
Region ,
Priority ,
ServerTerritoryGroup ,
ServerTerritoryCountry ,
ServerRegion
FROM vTimeSeries_SupportCalls
Indicators
Indicators offer a very quick, visual gauge of the
“state” of a specific data value, when compared
to another distinct value, a parameter, or
potentially a budget or service level agreement
threshold. For example, a green arrow indicator
could show you are beating your service level
times, a yellow circle that you are just meeting
them, and a big red X that you are failing to meet
them. Figure 1 displays the indicators currently
available in Report Services.
Embedded Charts
Embedding charts within a tablix might seem
counter-intuitive, but it means that instead of
displaying numbers in the data area of the
control, we can display a chart. This method
allows a report developer to present many
charts with minimal effort.
Final Report
Finally, Figure 30 displays a report summarizing
all of our support call information (see
TribalSQL_Final_Report in the code
bundle). This report contains:
Conclusion
In this article, we reviewed some of the
advanced charting techniques available in SSRS.
Using the graphing functionality greatly expands
the visual “eye candy” available to DBAs and
report designers. We’ve covered how to:
Happy charting!