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,



Hello,
We're currently working on an application which supports dynamic properties, created by the users of our application. We want these properties to be available to our users when they're designing a report with the standalone report designer.
In our codebase (c#) a class with dynamic property support looks like:
[DataObject]public class Employee { public string Id { get; set; } public string Name{ get; set; } public List<DynamicProperty> DynamicProperties { get; set; }}public class DynamicProperty { public string Name { get; set; } public object Value { get; set; }}
Let's say one of our users created 2 dynamic properties for Employee:
When we load Employee into the report designer as object data source, it displays:
But what we would actually like to see is:
We thought of a couple solutions for our problem:
Since we don't actually want to use any of these solutions I was wondering if there is an easier way to deal with this problem.
Thanks in advance!
Kind regards,
Rick Brants
Data in table column gets cut when report is rendered on samsung tablet device. The data is correctly displayed on webpage on desktop.
I have set the multiline property to true, textwrap to true.
Attached the screenshot where data gets cut in Training Module column

Hi,
I need a chart with one or more line series, configured in stand alone RD.
The line series are Numerical on both axes (it's a temperature (X) vs value (Y) plot).
The data for the Graph will be provided at runtime through object reference.
My data source format is as follows:
```
class Data
{
List<double> Temperature {g;s;}
List<double> Value {g;s}
}
```
I was able to 'import' the dll to the designer and the data source was set up correctly (I know this because I'm able to use other data sources to successfully populate other elements of the report).
----------------------------------
What I did so far?
* I inserted a new line graph into the report
* I tried setting the Category to Temperature and Value to Value in the Wizard
* I named the graph to be able to find it at runtime and set it's DataSource
* In various attempts to configure the graph I tried setting the X and Y axes of the Graph to Numerical type or X to Category and Y to Numerical (I get the legend and axes preview in the designer)
* At runtime I set the DataSource of the Graph the same way as DataSource of a Table (which works ok for the table): `((Graph)(report.Items.Find("nameOfGraph", true)[0])).DataSource = dataSourceObject;`
The problem I have is that there are no series in the generated report in the Graph while other parts of the report are populated correctly.
Could you please provide me with a walktrough of how to configure a line Graph in Report Designer with the assumption that the data will be provided at runtime?
Thanks!

I got a R2 2018 release of telerik reporting and excited about having Web Service Data Source option to connect to my OData REST service end point to retrieve the data.
Let's say that my web service endpoint responds below JSON:
{
"@odata.context": "My Context",
"value": [
{
"ShippingCompleted": false,
"TransactionDate": "2017-05-12T00:00:00+05:00",
"ShippingName": "Eshmatov Eshmat",
"Address": {
"City": "Serviceland"
}
}
]
}
If you look on an attached image, the data explorer contains a data source which have only two fields. The first is string (@odata.context) and second is Object (value).
For example, on report I want to have an access to City filed [=Fields.value.Address.City] or ShippingName field [=Fields.value.ShippingName]. This is not working and it is showing the System.Object [] in report. As well in data explorer there is no way to see what fields the value field have.
Is it a bug, or it is designed for one level of json tree? Is there any workaround for this?


Has anyone else noticed this or am I doing something wrong.
Upon getting a new version of the various Telerik suite of libraries, I often end up running the Report Upgrade wizard. That wizard seems to be doing something wrong in VS 2017. Here is an example of what I am seeing.
I have telerikReportViewer-12.0.18.416.min.js and telerikReportViewer.kendo.12.0.18.416.min.js in my existing project. The project is bound to Team foundation Server source control.. Upon running the wizard, the project processes normally and appears to update correctly. That catch I am seeing is that the wizard appears to remove the old version of the viewers from your project and adds the new version to your project. All of this seems to be done outside source control.
I.E., at the end of the upgrade cycle, source control still thinks the 12.0.18.416 items are in your project and that the upgraded versions are not part of your project. A manual update of both is necessary. I do not see this behavior on other suites such as ASPX or MVC/Kendo products.
