Telerik Forums
Reporting Forum
1 answer
169 views
Hi,

After switching BrowserHttp to ClientHttp in our SL app, we got "Session Expired" problem from Telerik Report Viewer.
Any suggestions/answers will be highly appreciated.

Thanks.

Regards,
NNT
Steve
Telerik team
 answered on 18 Apr 2012
1 answer
114 views
Hi,

After switching BrowserHttp to ClientHttp in our SL app, we got "Session Expired" problem from Telerik Report Viewer.
Any suggestions/answers will be highly appreciated.

Thanks.

Regards,
NNT
Steve
Telerik team
 answered on 18 Apr 2012
1 answer
216 views
Hi.. I have the following code with is throwing an out of memory exception.
The report returns just 300 records.. (12 fields)   and only 10 records 'hit' this code to load an image.
Any ideas? 

   private void pictureBox1_ItemDataBinding(object sender, EventArgs e)
        {
           Telerik.Reporting.Processing.ReportItemBase itemBase = (Telerik.Reporting.Processing.ReportItemBase)sender;
           string file = itemBase.DataObject["PHOTO_filename"] as string;




           if (!String.IsNullOrEmpty(file) && File.Exists("S:\\Conference\\photos_noncrm\\" + file))
           {
               Image image1 = Image.FromFile(@"S:\\Conference\\photos_noncrm\\" + file);


               this.pictureBox1.Value = image1;
           }
           else
           {


               this.pictureBox1.Value = "=Fields.PHOTO";


           }
        }
Petio Petkov
Telerik team
 answered on 17 Apr 2012
3 answers
192 views
I am trying to add a Pie Chart to a Telerik report for the first time and I am having an issue with that chart being cropped on the right-hand side just after the legend starts.  I have included a screen image of the issue.  

I have added the pie chart through the design interface and I am populating the data the the OnNeedData event.  Below is that code.  

private void PieChart_NeedDataSource(object sender, System.EventArgs e)
 {
            //Charts - Columns to Display
            string[] GraphColumnsToExport = new string[2] { "ShortLegendTitle", "Data" };
 
            //Charts
            DataTable Total = _SharedDataSet.Tables["CurrentYearToDate"].DefaultView.ToTable("tempTableName", false, GraphColumnsToExport);
 
            //Set the Series
            Telerik.Reporting.Processing.Chart procChart = (Telerik.Reporting.Processing.Chart)sender;
            Telerik.Reporting.Chart defChart = (Telerik.Reporting.Chart)procChart.ItemDefinition;
            ChartSeries serie = new ChartSeries();
            serie.Type = ChartSeriesType.Pie;
            serie.Clear();
             
 
            foreach (DataRow dr in Total.Rows)
            {
                ChartSeriesItem item = new ChartSeriesItem();
                item.Label.Visible = true;
                item.YValue = Convert.ToDouble(dr["Data"]);
                item.Name = Convert.ToString(dr["ShortLegendTitle"]);
                item.Appearance.Exploded = false;
                item.Label.TextBlock.Text = item.Name + " - #%";
                serie.Items.Add(item);
                 
            }
            serie.Appearance.LegendDisplayMode = ChartSeriesLegendDisplayMode.ItemLabels;
            defChart.Series.Add(serie);
}

Elian
Telerik team
 answered on 17 Apr 2012
1 answer
119 views
When I select parameter which shall update the list of data of other parameter, I do not see when he will be ready for use.

Thanks.
Steve
Telerik team
 answered on 17 Apr 2012
3 answers
383 views
Hi,

I have a web app which outputs reports to pdf for users to download.  The reports contain simplified Chinese text.  I am using Arial Unicode MS font to display this and in my test environment (Win 7 Pro, VS2010) all works fine.

I've now deployed my application to a Win Server 2008 machine, which also has the Arial Unicode MS font installed, but the pdfs produced are not rendering the Chinese characters - all I get is rectangular blobs.  I'm sure that the reports are using the Arial Unicode font - some bits are in English by design and they look identical to my test environment reports.

Is there anything else I need to do in Win Server 2008 to make this work?  Any other ideas as to what might be wrong?

Thanks.

Update: it turned out that a server reboot fixed this.  The Arial Unicode font wasn't installed when I first deployed the app.  It installed fine, but my app still didn't work properly until I rebooted the server - very odd!
Steve
Telerik team
 answered on 17 Apr 2012
1 answer
56 views

Hi
Is there a way to change the toolbar layout to add margins / paddings.
Somehow the text in the pagination area is dropping a few pixels when viewed in ie9.

see attached screendump image

Maybe you have a fix/solution that help us.

Best Regards
Peter

Steve
Telerik team
 answered on 17 Apr 2012
1 answer
166 views
HI, I'm using Telerik Reporting 5.1.11.928, in the Report Viewer toolbar, I have and empty button, and I don't know what it is.
Any Idea? Please check attached file.
Thank you.

This is the code xaml code:
<UserControl
    x:Class="Etelesolv.Telemanager.TME.UserControls.Invoice.InvoiceReportUC"
    xmlns:my="clr-namespace:Telerik.ReportViewer.Silverlight;assembly=Telerik.ReportViewer.Silverlight"     
    mc:Ignorable="d"
    d:DesignHeight="500" d:DesignWidth="400">
     
    <my:ReportViewer Name="ReportViewer1"
        HorizontalAlignment="Stretch"
        MinWidth="400"
        RenderBegin="ReportViewer1_RenderBegin"
        ReportServiceUri="../MyReportingService1.svc"
        Report="MyReport.Reporting.Invoice, MyReport.Reporting" UseNativePrinting="True" />
</UserControl>

Steve
Telerik team
 answered on 17 Apr 2012
10 answers
830 views
This is my first shot at using the Telerik reporting tools and I'm really loving them, but I am stuck with a problem.
I have a parameter that had a DataSource bound to it. The SQL in the DataSource works fine and returns all the records it is supposed to. I have the filter set to this: =Fields.CompanyId = =Parameters.CompanyId.Value
The Parameters.CompanyIdValue is a static value with the type of string.

I have been stuck on this for 3 days now and it is becoming a major issue. Can someone give me a little guidance?
Steve
Telerik team
 answered on 17 Apr 2012
5 answers
434 views
Dear Admin,

Please kindly advise how to show report data to across then down?
eg.  
Item01   Item02   Item03   Item04   Item05
Item06   Item07   Item08   Item09   Item10
Item11   Item12  

Thanks
Steve
Telerik team
 answered on 17 Apr 2012
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?