We have a number of reports that are currently using the obsolete Chart object, which I am in process of moving to the new Graph object. I have been unable to find an equivalent on the Graph object for the EmptyValue = Approximation setting in the Chart object. Is there an equivalent setting that I've missed, or will I need to build my own approximation lines when a category has no value at a certain point?
Thanks!
Hi Telerik team,
I'm in need of older verison of Telerik Reporting, it's Q2 2014 SP1 version. I can't find it the download section.
Where can I get it, please advise?
Thanks
We have a report that is 6 columns. However we also need it to be 2 rows.
So it's 12 per page.
How can we do this?
http://screencast.com/t/VDyj7oS17CTF
thanks for any help :)
I have a report where my columns coming from Stored Procedure are dynamically generated using Pivot
Now there are following points to be focused on:
1. Number of columns that will be generated is not fixed
2. Since columns are generated dynamically, they are not seen in data explorer
3. Name of dynamic columns keeps on changing
How do i display them on report
Please Guide
Hi there
I want to add a combobox into the Reportviewer Toolbar so that i can change the size (A0,A1,A2 ....) from the Report which is displayed.
Until now i have added the following into the Telerik.ReportViewer.Wpf.xaml
<telerikInput:RadComboBox x:Name="PapersizeCb"
ItemsSource="{Binding PaperSizeList}"
SelectedItem="{Binding SelectedPaperSize}">
</telerikInput:RadComboBox>
My Problem is that i don't know how i can modify the Viewmodel of the Reportviewer to bind my Properties.
The version of Telerik I'm using is Q3 2014 SP1.
Regards
I am using MVC Telerik Reporting. I have added parameter using Report Source, when I see html page it seems parameter are added but when I try to access it on code side in NeedDataSource Event, that time I get Paramter Collection is NULL.
1.) Add this Report Source in Report Viwer
var reportSource = new TypeReportSource() { TypeName = typeof(MBOProReportBook).AssemblyQualifiedName };
reportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrganizationID", SessionHelper.LastSelectedOrganization.OrganizationID));
reportSource.Parameters.Add(new Telerik.Reporting.Parameter("Organization", SessionHelper.LastSelectedOrganization));
2.) Use Following to access parameters but getting NULL in parameter collections
private void IssueReport_NeedDataSource(object sender, EventArgs e)
{
Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;
Organization organization = (Organization)report.Parameters["Organization"].Value;
string organizationid = (string)report.Parameters["OrganizationID"].Value;
}
I have this in a text box on the page footer of a very simple 1 page report to count the rows displayed.
RowCount: {Count(Fields.AccountNo)}
Why is it always returning 0, not sure what I am missing. Is there somewhere I can look to see a working example.
We are in the process of adapting our Winform application into a MVC Web Application and we have Telerik Reports that we use to generate Invoices and Statements which we attach to emails.
Ideally we would call a stored procedure while passing an Id, from there we would call the sp_send_dbmail stored procedure and pass it the file attachments and other data gathered using the Id which would make our sp call look like this:
EXEC msdb..sp_send_DBMail
@profile_name ='Profile'
,@subject = @Subject
,@body = @Body
,@recipients= @Recipients
,@body_format = 'HTML'
,@reply_to = @ReplyTo
,@file_attachments = 'C:\Report\Invoice 123'