Reputation: 3665
Is it possible to create a custom third party for Reporting Services?
The Dundas chart controls are an example of this however I am unsure if support for these have been internally built into SSRS..
Upvotes: 6
Views: 10315
Reputation: 11
The Dundas controls have some internal knowledge of SSRS (although they are build with the public API). For example they workaround certain SSRS CRI limitations using reflection - I found that by default in SSRS 2008 CRI can have only one drill trough action - something that Dundas and other vendors (Nevron) by the way workaround...
Otherwise interactivity will be limited to Tooltip, URL link, Bookmark and Jump to Report actions for all custom reports and the image output is only raster.
Upvotes: 1
Reputation: 3665
Yes.
After consulting google I've found that SSRS has CRIs (Custom Report Items). These can be created in a .NET language by implementing the ICustomReportItem interface (for the rendering) and inheriting from the CustomReportItemDesigner class (for the designer). These use the Microsoft.ReportDesigner and Microsoft.ReportingServices.Interfaces namespaces.
There is also a restriction in CRIs that the end output needs to be an image. This would make any interactivity very difficult.
For more information see
Jazz Up Your Data Using Custom Report Items In SQL Server Reporting Services
Upvotes: 6