New to Telerik ReportingStart a free 30-day trial

Model that contains a JSON-serialized report definition and an item identifier for Web Report Designer operations. Used by the Web Report Designer service to pass report data along with specific item references for rendering, processing, and manipulation operations.

Definition

Namespace:Telerik.WebReportDesigner.Services.Controllers

Assembly:Telerik.WebReportDesigner.Services.dll

Syntax:

C#
public class ReportItemData

Inheritance: objectReportItemData

Constructors

C#
public ReportItemData()

Properties

Item

string

Gets or sets the item identifier string that can represent an expression, item name, or other contextual reference.

C#
public string Item { get; set; }
Remarks:

The interpretation of this property depends on the specific Web Report Designer operation being performed. Common uses include targeting specific report items for rendering or specifying expressions for evaluation.

Report

object

Gets or sets the JSON-serialized report definition containing the complete report structure and configuration.

C#
public object Report { get; set; }
Remarks:

The report definition is serialized as JSON to enable efficient transmission between the Web Report Designer client and service.