Telerik Forums
Reporting Forum
2 answers
146 views
How can we implement WebServiceddatasource in standalone Telerik report? 

Also, I have gone through WebServiceDataSource Component I wasn't able to the Telerik.Reporting.WebServiceDataSource DLL or the corresponding NuGet package inside the application.
Nithin
Top achievements
Rank 1
 answered on 01 Jun 2018
1 answer
332 views
Under the topic 'How To: Create a Custom Parameter Editor' my understanding is that you can change the default editor into a dropdown. When I try the example given the report parameters section is not displayed on the report. What can be the reason for this?
Silviya
Telerik team
 answered on 01 Jun 2018
0 answers
102 views

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.

Büşra
Top achievements
Rank 1
 asked on 01 Jun 2018
1 answer
480 views

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,

 

Todor
Telerik team
 answered on 31 May 2018
1 answer
100 views
The report designed by standalone report designer shows display issues in android and ios devices when exported in Excel.
Todor
Telerik team
 answered on 31 May 2018
1 answer
573 views
  Trialing out Telerik Report Server   .    When trying to add a 'NEW REPORT' ,   I enter the correct server URL (http://{server}:83/) and local account set up in 'User Management',  but it keeps coming up with 'Error while logging to server.  Please check the server URI and credentials'
Todor
Telerik team
 answered on 31 May 2018
2 answers
370 views

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:

  1. Title
  2. Adres

When we load Employee into the report designer as object data source, it displays:

  • Id
  • Name
  • DynamicProperties

But what we would actually like to see is:

  • Id
  • Name
  • Title
  • Adres

 

We thought of a couple solutions for our problem:

  • Use web service data source so we can generate json, based on the dynamic properties. We don't actually want to use a web service for this.
  • Runtime compile a new class with the flattened properties and use this as object data source. Seems like a lot of effort for what seems to be a small 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

Rick
Top achievements
Rank 1
 answered on 31 May 2018
1 answer
157 views

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

 

Ivan Hristov
Telerik team
 answered on 31 May 2018
1 answer
365 views

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!

Todor
Telerik team
 answered on 31 May 2018
5 answers
1.1K+ views

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?

Todor
Telerik team
 answered on 30 May 2018
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?