When publishing to the live server the telerik reports do not have Excel and PDF exporting options available in the web report viewer. Works fine on testing server.
I am using the latest demo version.
How can this be fixed?
Hi,
I am using Telerik Reporting Q2 2011 with Silverlight 4. In NeedDataSource event I am hiding a field at run-time if the data source returns a “Null” value for it. It works fine and report viewer does not show that field. However, when I export the report in any format then the exported file contains this field.
I also tried to do it in other way and set visible = false at design time for the field and set Visible = true at run-time, if data source have value for it. It displays the field successfully in the report viewer but does not show it at all in the exported file.
Please suggest a possible solution how I can overcome this problem.
Thanks!
Adil
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);}