Repeat a telerik graph in reporting? - telerik-reporting

I have a doughnut graph in telerik reporting that I need to repeat in a single report for each row of data returned by the data source.
Currently I've only figured out how to get a doughnut graph with the data combined in one. Is this possible?

Related

How do I set up toggling the visibility of graph series in a Microsoft Report Builder SSRS report?

I currently have a working SSRS report in Microsoft Report Builder. The report displays both a table of the data as well as a graph of the table. What I am trying to do is make it possible for the end user to be able to filter out or turn off visibility for one or more of the series on the graph.
Here is what I am thinking as a possibility: create an "Exclusion List" list parameter in which the user can enter series names that they'd like to filter out. Then I'd modify the graph's series' filter properties such that any series with a name present in the list parameter will be filtered out.
I haven't figured out fully how to implement the above, but it seems doable to me. However, I am wondering if anyone has a simpler solution to this problem? Any suggestions would be greatly appreciated.

SSRS Report data moves up for certain records when downloaded to pdf

I am using SSRS report. In the 2nd rectangle in my rdl, i have few controls like tablix and textboxes.
when i generate report and download the report to pdf, report looks good for few records, but for few records the data in entire 2nd page is moved up by almost 2 cms.
I am not able to figure out the reason for this.
Please let me know what might be the reason for this and how this can be resolved.

SSRS: How do you collect small series in a stack chart?

Pie charts seem to have this ability of grouping small series together into an "Other" group.
https://learn.microsoft.com/en-us/sql/reporting-services/report-design/collect-small-slices-on-a-pie-chart-report-builder-and-ssrs
How would you do this for a stack chart?
I'm working from a dataset that calls a stored procedure, which I have no access to (I don't have the password). I actually have to deploy the report to even test it, so manipulating the SQL is out of the question.
Thanks!

SSRS chart report with sliders to filter or change dataset

I have excel sheet with monthly sales/cost data. Every month I use excel to generate all sort of graphs and then publish them as a pdf. But I want others to be able to play around with the different data they have on the graphs. I want to publish reports on webpage which generate charts based on a table when it loads up.Then, I want the users to be able to use buttons or sliders to change the range of the dataset (mostly having dates or quaters or product type etc) and then the charts to update with the new results.
Also, can anyone help me find the equivalent of this doc for sql 2008? I am looking for charts like This
I did some reading and found that SSRS can create all the charts that Excel can do. But I don't know if it can do all the calculations as well?
I also read we can make pivot tables in sql but am not sure if they are the same as the ones in excel where we can use them to filter data and the graphs show the changes real time.
I also read about MS Chart Control using ASP.net but I don't know asp and I don't know how much would researching about it help me in my case.
I just want my visitors to be able to manipulate the dataset that is generating them graphs on their visit. Thats it. Dont' want to store their changes or anything.
What do you guys recommend?
btw I have sql 2008 in mind to do this.
Do you guys recommend me to use Access 2007
Do they need to view the report on a webpage or could it open in Excel (or the Excel IE browser plugin)? SoftArtisans OfficeWriter has the ability to design rich Excel reports for SSRS with a template-based approach. The output will be a true Excel file with live charts, formulas and pivot tables that can be manipulated by the user. The out-of-the-box Excel export functionality doesn't have real formulas and charts.
Disclaimer: I work for SoftArtisans
Excel Charts and ability to dynamically customize is a pretty advanced feature compared what is provided in SSRS... Matrix is the equivalent of pivot in SSRS. You can follow this MSDN article to get an idea of Tables, Matrices, and Lists (Report Builder and SSRS). This can be helpful in terms of Reproduce an Excel Pivot table in SSRS 2008
Here is a better tutorial if you could take a look..
The most important aspect would be:-
Set Datasource to Chart Control
Define Fields to be used by Chart Control
Using parameters would be the best catch on filtering datasets. So you will need to have a secondary dataset on top of the main dataset.
How to filter one dataset value with another dataset Table value in SSRS.
References:
Can SSRS use pivot tables such like excel drag and drop
http://social.msdn.microsoft.com/Forums/en/sqlreportingservices/thread/4b4664e2-415b-41d4-99e6-1421aa70e7ac

How to Drill into lowest granular data using SSRS, from SSAS Cube

I have an SSRS report that uses an SSAS cube as the data source. I want to add drill down functionality that mirrors drilling into a cube from Excel. To be clear, I am not referring to navigating hierarchies. I want to get to the lowest granular level of data used to calculate the aggregations in the cube. Excel does this when you double click in a pivot linked to SSAS, that's what I want.
Does anyone know how to accomplish this from SSRS, or even how excel is doing it?
Thanks.
You can use default drill through action or custom drill through action. Default drill through action displays granular data when you double click the excel cell, which contains aggregate value.