Telerik Forums
Reporting Forum
1 answer
118 views
We have some very complex reporting requirements and cannot seem to find a chart type that can do everything in the attached image. Looking for series of lines and series of circles points (with no lines).

Can telerik do this in one report?
Stef
Telerik team
 answered on 09 Feb 2015
1 answer
162 views
I have been searched and read many forum posts on hiding subreports. The problem I am having is that all I see is the following code snippet:

 private void subReport1_ItemDataBound(object sender, EventArgs e) 
        { 
            Processing.SubReport subReport = (Processing.SubReport)sender; 
            Processing.Report detailReport = (Processing.Report)subReport.InnerReport; 
            Processing.Report mainReport = (Processing.Report)subReport.Report; 
                 mainReport.Visible = detailReport._filteredCount > 0; 
        } 

I am assuming I put this code in the subreport cs file. However, when I add it, visual studio gives me "The type or namespace 'Processing' could not be found" error. Could someone please give me a more complete example (e.g. Do I need to add a using, and if so which one? Do I need to add a reference, and if so which one? Do I need to add event handlers?)?

Thanks in advance for your help.
Hinata
Top achievements
Rank 1
 answered on 09 Feb 2015
1 answer
63 views
I need to group some data while displaying in the report but I do not want show it as a header and line details.
Please see the report-data.png attachment for the data that I get and report-ui.png for the report that I want. Please suggest how can I achieve this?

Thanks,
Raja
Nasko
Telerik team
 answered on 06 Feb 2015
1 answer
92 views
Hi All

I was trying to render the report programmatically in PDF format.
Is there a way where we can set our customize settings like indent, bold etc before rendering.

Any help would be appreciated .
Stef
Telerik team
 answered on 06 Feb 2015
4 answers
76 views
Hello Support,

Like many users here, I am new to reporting. I have been going through the documentation and examples. I just can't seem to wrap my mind around the Totaling part of reports.

My question is, how do I add a Total Field (for example Price), if I went through the Report Wizard? I used a table layout.

I know you can do it as follows:
The way I can do it is, create a blank report, bind my SQL data source to the Report. Drag in the fields, then and a group section for totaling.

I like the table layout and the snap to grid... so I want to try getting it working without binding it to the report.

Hope this makes sense, apologies if it has been asked before, I looked around for a while and could not find the exact question

Thank you
Brenden
Stef
Telerik team
 answered on 06 Feb 2015
1 answer
51 views
Hello Support,

I am starting to get into the full swing of Telerik Reports. A problem I am currently having is the filtering "toolbar".

When I am in Visual Studio (13) and I compile and run my solution the filter toolbar with my input parameters is all messed up. I have filter and parameters for a Date Range, Company ID and Transaction type ID. Basically two Date Time pickers and two drop down lists the user can chose from. Like I said before all works well in the Designer when previewing the Reports.

The issues are:

- The DateTime picker style is bulky.
- When I click on the Date To (second date time picker) it triggers the first date time picker. So I cant set an end date (unless I type it in)
- In the company list the first item disappears?
- In the transaction type drop down list instead of seeing the default text <select a value> it reads &lt;select&160;a&#160;value&gt;

Separate from the filters but another issue is the pagination:
- The paging navigation controls do not work (I can not step through or jump to a page)

I have tried to solve the issue so far but no luck:

- I have made sure the httpHandlers in the web config file are the correct version ( I have 8.2.14.1204)

<add path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=8.2.14.1204, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE" />

Is my current setting..

I am not sure what it could be or why it is happening when checking the console in the browser there dont seem to be any errors?

Appreciate the feedback and any ideas?

Thank you
Brenden
Stef
Telerik team
 answered on 06 Feb 2015
1 answer
482 views
I want to limit/secure report data based on the user that is logged in. I've set up a Report Parameter to do this, but want the value for this parameter to be populated automatically and hidden.

In SSRS there is a built-in field for this (User!UserID). Does something similar exist in Telerik Reporting?
Hinata
Top achievements
Rank 1
 answered on 05 Feb 2015
1 answer
214 views
Good afternoon,

While working with a report viewer I found an error in the example: How To: Create a Custom Parameter Editor. In the code example the createEditor method makes a call to a jQuery function that sets the html for the element that you pass to the placeholder parameter. The call in the example is misspelled.

Please find the code example below for a working version.  
//misspelled
$(placeholder).htmll('<div></div>');
//should be
$(placeholder).html('<div></div>');

//Code example fixed
<script type="text/javascript">
  $("#reportViewer1")
  .telerik_ReportViewer({          
   parameterEditors: [
    {
     match: function (parameter) {
      return Boolean(parameter.availableValues) && !parameter.multivalue;
     },     createEditor: function (placeholder, options)  {
      var dropDownElement = $(placeholder).html('<div></div>'),
          parameter,
          valueChangedCallback = options.parameterChanged,
          dropDownList;          function onChange() {
         var val = dropDownList.value();
        valueChangedCallback(parameter, val);
         }      return {
       beginEdit: function (param) {        parameter = param;        $(dropDownElement).kendoDropDownList({
         dataTextField: "name",
         dataValueField: "value",
         dataSource: parameter.availableValues,
         change: onChange
        });        dropDownList = $(dropDownElement).data("kendoDropDownList");
       }
      };
     }
     }]
  });       
</script>
Stef
Telerik team
 answered on 05 Feb 2015
2 answers
138 views
I have recently upgraded to Q3 2014 Telerik Reporting.  Now I have an issue with the WinForms ReportViewer that I didn't have before.  In the visual studio report designer, I have setup my reports to be 8.5x11 Letter in Landscape mode.  Report renders correctly and prints correctly in the designer.  However, when I render the report in the WinForms ReportViewer, it appears that it is shrinking the report by about 60%.  I have checked all the report settings at runtime and everything appears to be correct.

Any ideas on why this is happening?

Thanks,

Terry
Nasko
Telerik team
 answered on 05 Feb 2015
1 answer
103 views
I am using the map capabilities along with WellKnownText format to plot countries and build color coded maps.  My customer has the need to export the output to image or PPTX.  He would like each country to be a unique object so that he can manipulate the output.  For example, he may need to remove a country or offset one to highlight it.  Other scenarios include adding custom labels and pointers to call out a country or identify it better.  

Is there a way to create the reports so that each country is a unique image when exported instead of all countries exporting as a single image?
Nasko
Telerik team
 answered on 03 Feb 2015
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?