Hi,
Currently, we have 4 options (Header, Query, Inline, Cookies) for setting parameters in Http request of web serviced data source. Using these options we are able to set report parameter as the parameters for the Http request of web serviced data source. Instead of that how can we pass parameter inside the body of Http request? Current we are able to send parameter inside the body statically. Is have any other way to bind the value of the parameter inside the body from report parameter.
I'm trying to achieve the result in the attached file.
I have gone through the documentation and I cannot see anything which can help me. The only things I could find were for RadChart.
I'm using Q1 2016 SP1 (with no option to currently update)
Is this possible in the Telerik Reporting framework?

Hello!
Could i configure the same multiple grouping and blue dash line on Graph? If yes, how i can do this?
Please look at attached image
Thanks!

/// <summary>/// Can only shrink content within the Report.ItemDataBinding Event/// </summary>/// <param name="pageHeader"></param>/// <param name="debug"></param>public static void ShrinkToContent(this Telerik.Reporting.PageHeaderSection pageHeader, double paddingBottom=0.02D, bool debug=false){ var items = pageHeader.Items.OfType<Telerik.Reporting.TextBox>().Where(x => x.Visible).OrderBy(x => x.Top.Value).ToList(); double threashold = 0.02; foreach (Telerik.Reporting.TextBox tx in items) { tx.CanGrow = false; if (string.IsNullOrEmpty(tx.Value)) { // shuffle items beneth this textbox foreach (Telerik.Reporting.TextBox item in items.Where(x => x.Visible && x.Top.Value > tx.Top.Value && tx.Left.Value < x.Right.Value && x.Left.Value < tx.Right.Value)) { // item.Location = new Telerik.Reporting.Drawing.PointU(item.Left, item.Top.Subtract(tx.Height)); item.Top = item.Top.Subtract(tx.Height); if (debug) { // blue means shiffted item.Style.BackgroundColor = System.Drawing.Color.Blue; } } tx.Height = Telerik.Reporting.Drawing.Unit.Zero; tx.CanShrink = true; // tx.Style.BackgroundColor = System.Drawing.Color.Black; } } var stacked = items.OrderByDescending(x => (x.Height.Value <= threashold) ? 0 : x.Bottom.Value).ToList(); var lowest = stacked.FirstOrDefault(); // TODO // If we have a bottom alignment ensure that its bumped up and still on the bottom // Colapse between lowest and next above in vertical stack double oldHeight = pageHeader.Height.Value; double newHeight = lowest.Bottom.Value; if (newHeight < (oldHeight + threashold)) { if (debug) { pageHeader.Style.BackgroundColor = System.Drawing.Color.Yellow; } pageHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(newHeight + paddingBottom); }}
I am working on Telerik Reports which are migrated from Silverlight.
I am now using HTML 5 Report Viewer.
There is one report that gives this error : "Internal Server Error. Child doesn't implement ITableCell."
The report is compiled and generated correctly in the HTML Preview Pane in the Visual Studio.
Also, what actually happens is that the sometimes (as I have noticed) the report data does come and populates and then vanishes in a blink giving this Error.
I have attached a screen shot of the error view.
I am expecting some quick response.
Thanks.


Hello, I have a telerik report page. The pdf output at my table;
aa bb
cc dd
ee ff
gg hh
ii jj
kk ll
I want the table format;
aa bb gg hh
cc dd ii jj
ee ff kk ll
How can I resume the table to the right?
Thanks.
Hi,
I am trying to add reference to an assembly in "Standalone Telerik Reporting Designer" to be used for Object Data Source.
In a link below it describes how to do that: https://docs.telerik.com/reporting/standalone-report-designer-extending-configuration
But it is strange that I can't find where this section/file is located :)
Can you please help me to find from where to open and edit that configuration file?
Thank you,
