Telerik Forums
Reporting Forum
2 answers
380 views

I'm working with a Telerik report that I'm creating dynamically at runtime.   The report has a Telerik.Reporting.Graph with a single line series.   Works great - the problem is, I need to mark and label certain points along the curve. 

I have the marker data, that is I know exactly where I need them -  I just don't know how to do it.   Any suggestions?

Stef
Telerik team
 answered on 05 May 2016
5 answers
228 views
Dear Sirs,

First, you've got an awesome product!  We've been using your ASP.Net, WinForms and Reporting for a few years and we've produced great results from them...

Ok, old issue...  Within Reporting 2013 Q1, can we effect chart series tooltips?  I've read the older forum posts saying that it may be coming and now I see in the 2013 Q1 Online Documentation items for things like ActiveRegions but not sure how/if this can make it happen.

Basically, we have multiple line series on a chart each with PointMarks and no data labels.  It would be wonderful for a user to be able to mouseover a PointMark and see more information.

I've tried:
For i As Integer = 1 To SummaryData.GetUpperBound(0)
    Dim myItem As New ChartSeriesItem(SummaryData(i).sValue)
    If SummaryData(i).sValue1 = 0 And Me.ReportParameters("HideZeros").Value Then
        myItem.Label.Visible = False
        myItem.Empty = True
    End If
    myItem.ActiveRegion.Tooltip = SeriesName(2)
    chartSeries1.AddItem(myItem)
Next

This produces no compile or runtime errors and the chart looks great - but it does not enable a mouseover effect (aka tooltip) in the chart in the ReportViewer when the user moves their mouse over a series PointMark.

Hopefully waiting,
Steve
Stef
Telerik team
 answered on 04 May 2016
6 answers
511 views

Hello Telerik Team!

 I have a report in which I would like to use conditional formatting to change the background color of rows in a table based on a change in the value of one of the columns. Something similar to this example in Excel: http://superuser.com/questions/553899/alternate-grid-background-color-in-excel-when-a-value-of-a-single-column-changes

Is there a way to do this in the Edit Expression Dialog in Telerik Reporting Q3 2014?

Thanks so much!

em
Top achievements
Rank 1
 answered on 04 May 2016
1 answer
407 views
I have a vertical bar chart report.  I want to change the width of each category to be exactly 1.32 inches wide.  I have a table below the graph that I am lining up with the grid in the graph.  The Total Risk column and the Provisions SF6 column are just a couple pixels off.  See attached.  How do I set the width of each category column?
Stef
Telerik team
 answered on 04 May 2016
1 answer
291 views
Hi, i am using standalone telerik report designer. I designed a report that use crosstab item and create my columns dynamically. But columns width is static. I want to resize column by column count. So i bind column's width  to A formula but no change has occured. Please help me how can i do it
Katia
Telerik team
 answered on 04 May 2016
2 answers
288 views

Hi,

I would like my line chart series to start in the bottom left corner 0,0.  Please see the attached pic.

Thanks in advance.

 

Telerik Reporting 2013 Q2 SP1

 

Stef
Telerik team
 answered on 04 May 2016
1 answer
150 views

Hello,

I need to generate a pdf which will have some static content in two columns however there are some content which need not to be displayed in two columns fashion.

I have tried to achieve the same using ColumnCount property of the Report but it doesn't play nice with content which need to displayed in single column. So if there any way to specify Column Count property for specific content of the report, not the entire report?

I have attached screenshot of a sample pdf which has structure similar to the one I want to generate.

Thanks,

Bhavik

Stef
Telerik team
 answered on 03 May 2016
25 answers
793 views
Since the recent Q2 2013 update I have been having problems with the Report Designer.    Under VS 2012 it seems impossible to add a web based ReportViewer control to a webpage and have the control render correctly in design mode.  It does appear to work at run-time.

I have tried various suggested remedies all which fail to address the problem.  To confirm the problem actually exists, I completely removed all Telerik products including the Control Panel.  After confirming I had no Telerik products installed in my add/remove programs I then rebooted my system.  I removed the "telerik" folder in my c::\program Files (x86) folder.  I rebooted my machine.  I then installed a fresh copy of the control panel and reinstalled a fresh copy of all products.  

I then launched VS 2012 and created a RadControls Web project using the .NET 4.0 framework.  The project is the base template provided by Telerik.  I then dragged the report viewer control onto the default.aspx page.  It failed to render.  I was forced to add the "telerik.reportviewer.axd_*" line to the "system.webserver" section (as noted in the documentation).  While this allowed the project to run it did not resolve the design time issues of the report viewer.

I compiled the project, saved everything, rebooted, and then re-launched VS 2012 and confirmed that design time rendering of the report viewer control still fails.

Given I have a "blank" system, what am I missing?  Is this a known "feature" I have not seen documented somewhere?

Stef
Telerik team
 answered on 03 May 2016
1 answer
138 views

Application Type: ASP.NET

Telerik version: Telerik Report Q1 2014

Dev environment:  Visual Studio 2013

I am trying to create a chart using a stored proc as the data source. I can create a table using the data without a problem however when I create a chart it throws an error referencing a temp table I use in my SP. "An error occured while processing Chart 'Chart1' Invalid Object name '#Temp_StatsTable' "

Any input or direction would be much appreciated!

Thank you

Katia
Telerik team
 answered on 03 May 2016
3 answers
386 views
Hello,

I have an issue with the name of the generated files when exporting a report to PDF or XLS from the report viewer. When a report contains a "special character" (for example "ä") in its name the character in question is not rendered correctly when clicking on the "Export" link. Instead I have a question mark wrapped in a black losange.

I understand this issue is related to URL encoding but I'm not sure how to handle it. Here's my scenario with more details:

Environment information:
- Silverlight 4.0
- IIS 7.0
- IE 8.0
- Telerik Reporting 2012Q1

In our Silverlight 4 application, a user wants to create a report. At first, he is on a page (a FloatableWindow) on the application and clicks on a button. This button sends the user to the ASPX page handling the report generation. The click on the button actually calls HtmlPage.Window.Navigate with the URI of the ASPX page in question and a bunch of parameters we use to generate the appropriate report. Among these parameters, one corresponds to the name the report will be given (also used as the file name which the report will be generated to). When debugging, in the ASPX page, I can see that the name of the report is correctly encoded (ie. the character "ä" is present and displayed correctly in the report name). The report is generated correctly in the report viewer but when clicking on the "Export" link (to PDF or XLS, same behavior), the name of the file does not hold this character anymore but instead the question mark with the black losange. Below are some code extracts that may help on our process.

Code-behind of the ASPX page holding the ReportViewer:

public class ReportManagementPage : Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Report report = new MyReport();
        report.Name = Request.QueryString["reportName"];
        report.DocumentName = Request.QueryString["reportName"];
  
        reportViewer.Report = report;
    }    
}

The above code correctly assigns the report name and document name correctly encoded. Clicking on Export does not use the correct encoding. If I right-click on "Export" and select "Open in new tab", the URL in the URL box of IE looks fine but the title of the page (in the tab and in the browser) uses the wrong encoding. FYI, spaces are correctly rendered and do not use %20, not even in the URL. Is there any way to fix this and tell the "Export" link/button what encoding to use for the file name?

Thanks for your help.
Stef
Telerik team
 answered on 03 May 2016
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?