Is it possible to add the HTML data-* Attributes as extra attributes on a Text element in the Telerik report viewer.
For a localization plugin we need to add data-resource-id="id" as HTML data- tag to the text to allow interactive resoure editing.

There are two bar series in a graph ,
I have tried to change the DataPointLabelAlignment with different assembly to not be overlapped and to suit my user's preferences ,
but they do not like it all.
The label, most of DataPointLabelAlignment assembly will be overlapping .
Is there any way to change the label location with both OusideEnd case?

Hello,
I have a strange problem and can't find the solution.
I have a big report with a table that shows ToDos in buildings in a groupHeaderSection. The table is printed on every page and for each building there is a page break. Till yesterday all was good and the users happy.
Now I have the problem, that for some buildings I miss rows and have blank pages.
Example: There are 19 ToDos for building "A1". If I run the report I get 3 pages, one with 17 rows (ToDos) and 2 blank pages. So I miss 2 rows.
The table has a height of 3.5cm, if I change the height to more than 4.5cm it works.
But I have other buildings where 4.5cm is not enough, so I tried to change the height to 6.0cm. It works again.
How can I solve this problem? I can't change the table height every day if some rows are missing.
Thanks for any help.
Best regards
Diego

Hi Team,
please let us know the limitation of showing digits in the bar chart.
124287952701.90 the bar chart is not coming based on the value provided.please let us know as soon as possible.
Hi.
May I ask somebody to let me know how should be entered a size of a picture box in bindings? Where I can find your manual with real examples? Your online manual is just idea how it should work.
Size = "2.5in", "1in"
Or
'2.5in', '1in'
Or
2.5in, 1in
none of the above are working.
Thank you,
Hi,
How can make bold a part of text in textBox in telerik reporting Q1 2015?
regards

On the Release History for R3 2017 (version 11.2.17.913) it has the follwing listed:
FIXED
Services
HttpContext.Current is not availble during the report processing
Does this mean that the HttpContext.Current is now available during report processing? Or is it still not available?
Is it possible to customize the table of contents? Say like I need to add some text as a hint to the user, before the table of contents start.
Or the data object of TOC available as global object, so that I can render it myself in a table or something.

I have a report that works great on just about every computer in the building. However we have a small subset of users that when they print, it scales the print to only the top left of the page at half width and half height.
It's printing the whole report but it doesn't cover the entire page.
I've found the issue is only in Parallels Windows 10 VMs. These VMs are all bootcamp partitions Parallels is mounting to run as a VM. If the user reboots and boots directly off the partition, running Windows using Bootcamp, the report prints fine. I'm assuming this problem is an issue related to the graphics driver Parallels.
I've confirmed this on multiple Macs. Sierra and High Sierra and a few different versions of Parallels, including the latest build.
The report launches as clickonce app built with VS2017 and I'm using C# to load and modify the report.
Any suggestions?

I have a Controller action that receives a value through ajax, and I want to pass that value as parameter to a query I did in the report.
This is my controller action:
public ActionResult OrdenCompraReport(int value)
{
/Here i want to pass the value into a parameter on Telerik reporting
return View();
}
And this is my query in my sqlDataSource of Telerik Reporting:
select oc.OrdenCompraNumero, oc.FechaDeEmision, fp.Nombre, a.Nombre, a.Contacto, a.Direccion, a.CorreoElectronico, a.Ruc, a.Telefono
from OrdenCompras oc
join FormasPago fp on oc.FormaPagoCodigo = fp.Codigo
join Aseguradoras a on oc.AseguradoraCodigo = a.Codigo
where oc.OrdenCompraNumero = @OrdenNro
@OrdenNro is the name of the parameter. Any ideas of how can i do this?