New to Telerik ReportingStart a free 30-day trial

Model that contains a JSON-serialized report item definition and an item name for Web Report Designer component operations. Used by the Web Report Designer service to pass individual report item data along with identification information for component-specific operations.

Definition

Namespace:Telerik.WebReportDesigner.Services.Controllers

Assembly:Telerik.WebReportDesigner.Services.dll

Syntax:

C#
public class ReportItemDefinitionData

Inheritance: objectReportItemDefinitionData

Constructors

C#
public ReportItemDefinitionData()

Properties

Item

object

Gets or sets the JSON-serialized report item definition containing the component structure and properties.

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

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

ItemName

string

Gets or sets the name of the report item for identification and targeting within the report structure.

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

Used to locate and identify specific report items within the report structure for operations such as binding path analysis and property manipulation. The item name must be unique within the scope of its containing report or report section.