
Hi,
I want to make a report by using report viewer on Winforms(C#).
Report was designed on Visual studio 2019.
When I add and set a sqlDataSource on Report Designer. it is shown correctly.
I create a report on report viewer on Winforms(C#) by dynamic data with SQL query.
How can I set sqlDataSource ?
Here is my code.
private void reportViewer1_Load(object sender, EventArgs e)
{
TypeReportSource typeReportSouce = new TypeReportSource();
typeReportSouce.TypeName = "SalesManager.Products.BarcodePrintReport, SalesManager, Version=0.9.24.1, Culture=neutral, PublicKeyToken=null";
typeReportSouce.Parameters.Add(new Telerik.Reporting.Parameter("Barcode", "O43659"));
SqlDataSource sqlDataSource = new SqlDataSource();
sqlDataSource.ProviderName = "MySql.Data.MySqlClient";
sqlDataSource.ConnectionString = "Server=********;Port=****;Database=****;Uid=****;Pwd=*****;CharSet=utf8;Convert Zero Datetime=True";
sqlDataSource.SelectCommand = "SELECT barcode,name FROM product_list WHERE code = 'TT003' OR code = 'TT002'";
sqlDataSource.CommandTimeout = 0;
this.reportViewer.ReportSource = typeReportSouce;
this.reportViewer.RefreshReport();
}
Im trying to make a doble colum report, and i gotit but a the and of report i want to end in a complente center table, but i can not get it cuz the report is in double column.
What can I Do for resolve that problem.
Hi,
I have downloaded Telerik_Reporting_Q1_2016_SP1_manual.chm, however I can only see the content tables, I cannot see content on the right hand side of help windows. I am using windows 10.
Downloaded and installed Telerik Report Designer to do some assessment. I am trying to connect to Oracle database for the report I've been working with. But when I click "Test Connection", I encountered this issue.
I wan't to know what does this mean, and how to resolve this issue.
PS: Currently using the following:
Processor: Intel Core i7-6500U
OS: Win 10 Pro ver.1909 OS Build: 18363.657
64bit, x64-based processor
Any help would be highly appreciated. Thanks in advance.
Now im having 2 column charts:
1. Sales amount by department
and
2. Number of transactions by department
i wan to combine both of them in this way:
Sales amount : left vertical axis
Number of transactions: right vertical axis
department: horizontal axis
may i know can I achieve it?
thanks in advance


Hello,
I am using Telerik Report Designer HTML5. I have made a graph where the x-axis ('x') and y-axis ('y') data is retrieved from the database. On my tool-tip, I am retrieving a different data from the database, let's say 'z'.
When I export my graph in .csv format, the 'x' and 'y' data is listed down, but I want the csv to also export my 'z' data from the tool-tip.
Hence, is it possible to export the tool-tip data from a graph in a csv?
Hi, I have some WPF projects in .NET Framework 4.5 with Telerik reports working fine, but I need to make a WPF Project on .NET Framework 3.5 because I need to report on BD SQL 7, and I only can use 3.5 to can connected to this
When I add the Telerik controls, and the Themes carpet, and then I compile the Project, I have some errors:
Error 102 No se admite el tipo VisualStateManager en los proyectos Windows Presentation Foundation (WPF). C:\Users\SP6688\Documents\Visual Studio 2013\Projects\Modulo Produccion\Modulo Produccion\Modulo Produccion\Temas\Telerik.Windows.Controls.Input.xaml 1 1 Modulo Producción
and the same for Telerik.Windows.Controls.Navigation.xaml and Telerik.Windows.Controls.xaml
How I can fix this?

I have a report that's supposed to show a list of employees who haven't swiped in or out, and which swipe they missed. I'm having trouble getting it working the way I need it to work, so I'm hoping someone can help me out. I can't seem to attach the report file here, so I've attached some screenshots.
The report will be organised in a group hierarchy, but the groups themselves won't be specified in the report. In the attached sample report they're grouped by Location, Building, and Department, which for this example have been specified manually in the GroupTypes and GroupHierarchy CSV sources, but different companies might have different group hierarchies. For example they might only have 'Location' and 'Department', or they could have several other groups. Essentially the report should be able to handle any group hierarchy without needing to update the report manually. I've seen people saying they solved this by using recursive sub-reports, but so far I haven't been able to get this working.
The user running the report also needs to be able to select how the results are grouped, so in this example the user might want to display a list of employees in each building, ignoring the department, or they might want to display the employees per location. Would this be possible using the Toggle Visibility action on the group headers? The employees would need to be ordered by name, ignoring any hidden departments. I'm not sure if this is possible with the way the report is structured at the moment.
The actual report will be getting the data using Object Data Source methods, I've created the CSV objects to represent what they look like. The GroupHierarchy and GroupType CSV objects were created for this example, so these can be changed if necessary.
Thanks to anyone who can help me out with this.