Telerik Forums
Reporting Forum
1 answer
74 views
Hi, telerik,

I've used WCF service to print on Silverlight,
but at this time of new WPF project, I'd like to confirm that WPF has to use WCF service as well.
I searched forums and documents but can't find complete answer.

Is it possible to print list objects which are fetched from server and displayed on the grid without using WCF service ?

RGDS
Kang




Peter
Telerik team
 answered on 26 Mar 2014
3 answers
108 views
Hi, we're in the middle of upgrading some older Telerik Reporting stuff (developed with Q3 2009) and after installing a newer version (Q3 2013) our 5 reports crash with an overwhelming 399 errors in VS 2010. We are trying to upgrade to use the installer named Telerik_Reporting_Control_Panel_Q3_2013.exe. Loading the designer works after deleting the SUO file and using the old DLLs.
Searching for how to upgrade to newer versions has failed because of broken links or no useful information.
So it will be highly appreciated if someone can help us pointing out the best way to get these reports working again.
TIA, Pieter
Stef
Telerik team
 answered on 25 Mar 2014
1 answer
100 views
It seems like to open a collapsed group, the entire report has to be completely re-built and rendered. I have 3 nested collapsed groups. The response between each open makes the report pretty much useless.
Is it normal to have to completely re-create the report with each expand or collapse? Is there some sort of caching that can be employed?
Stef
Telerik team
 answered on 25 Mar 2014
1 answer
76 views
Hello,

Is it possible to create a classic Agile Burndown report via Telerik Reporting?
Stef
Telerik team
 answered on 25 Mar 2014
1 answer
235 views
Hello,

I have a datetime parameter in a report and I would like to use a DateTimePicker in my Silverlight application to choose the date and the time.

But when I choose an hour, it doesn't refresh the report. When I click on a day, the report is correctly refreshed and the hour is set to 00:00...

Is it possible to do it ?

Thanks
Hinata
Top achievements
Rank 1
 answered on 25 Mar 2014
1 answer
116 views
Hi,

We use Q3 2012 build 6.2.12.1123 for telerik reports and RTF export option does not render the chart borders correctly. All the other formats exports as expected without any formatting issue. Kindly suggests the way to fix the formatting issue or does any upgrades are required to fix this issue.

Please find the attached Image without borders when exporting as RTF.

Nasko
Telerik team
 answered on 24 Mar 2014
1 answer
105 views
Hi there -

My boss suggested to our users to have our little Voucher report print the customers address on the back of the page.  Therefore when you fold the voucher, the address will appear in the envelope window.

So I created the report, that has several components (report header/footer, page header/footer and details.)  The report prints very nicely at this time.
The question I have is, how in the world do I get the address information to print on the other side?  Now the printer will have to be defaulted to duplex print, which isn't a problem.  Do I need to create a "second page" to print layout address information?

If you're thinking of an address book, I'm already having problems with that; no reports show up in the reportBook list...but that could be another topic of discussion later.  Right now, I'm looking how to add address information on the reverse side of the report.

To add more difficulty, if the details of the report goes beyond one page, I want to make sure I am printing the address information on the last page only.

Any help or direction is appreciated - quickly.

Thanks
Bob
Nasko
Telerik team
 answered on 24 Mar 2014
8 answers
130 views
I have a LineSeries graph that displays multiple line series. I want to display a series name next to each LineSeries at the beginning of the series. If I understand correctly Telerik currently doesn't have a way to show annotations on the graph. Am I right? So is there any other way to display a text next to the LineSeries itself. I don't want to use legenf. To explain to you what we are looking for I have attached a Sample.pdf. In this screenshot you can see that at the start of each series there is a text like for eg: "I", "II", "III", "aVR", "aVL", "aVF", "V1","V2", "V3" etc. Is there any way to do this?  I read somewhere that I could use DataPointLabelConditionalFormatting for this purpose but I don't know how to use it. Anyone have any ideas?
Mandar
Top achievements
Rank 1
 answered on 24 Mar 2014
3 answers
112 views

Hi,
I created a pie chart and I have two problems..

1. Custom palette
    I want to create a custom palette in code-behind
    This is my code

private void chart1_ItemDataBound(object sender, EventArgs e)
        {
 
            Telerik.Reporting.Processing.Chart procChart = (Telerik.Reporting.Processing.Chart)sender;
            Telerik.Reporting.Chart defChart = (Telerik.Reporting.Chart)procChart.ItemDefinition;
 
            //Find the operations type
            Exception exception = null;
            List<OperationTypeEntity> operationTypes = m_OperationHelper.GetOperationTypes(m_UserId, ref exception);
 
            Palette palette = new Palette();
            palette.Name = "SSCCustomPalette";
 
            foreach (var serie in defChart.Series)
            {
                //Find the operation type color to use for my custom palette
                if (serie.Name.Equals("SeriePerLegenda"))
                {
                    palette.Items.Clear();
                    foreach (var item in serie.Items)
                    {
                        Color color = ColorTranslator.FromHtml(operationTypes.FirstOrDefault(p => p.Description.Equals(item.Name)).Color);
                        palette.Items.Add(new PaletteItem(color, color));
                    }
                }
            }
            chart1.CustomPalettes.Add(palette);
            chart1.SeriesPalette = "SSCCustomPalette";          
             
          }

This code works only after a manual refresh
I can't use need data source event becouse my datasource is already assigned so this events it's not fired.

2. How to print percetage on pie and Description on the legend?
I create a new series and I setted the following:
DataLabelsColum -> Description
DataYColumn -> MyValue
DefaultLabelValue ->#%
Apperance LabelDisplay -> ItemLabels

When I run the report, the legend and the pie labels are the same. I see only the description.

Thanks

 

Stef
Telerik team
 answered on 24 Mar 2014
1 answer
321 views
In my UI, users can view reports
I want an option to schedule a report based on their criteria

I.e. send me a report at 10pm of data from the day
or send me the weekly report every sunday evening at 8pm

How would you suggest implementing this
I was thinking of a scheduled task to hit a console app that is running every x mins to scan the "criteria" table and send any reports that falls in this criteria
But not sure this is the best way

Can you suggest the best practice for this please
thanks
John
Top achievements
Rank 1
 answered on 24 Mar 2014
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?