Class ReportDataResult
Represents the result structure for report data, containing various properties associated with reporting metrics and data configurations.
Inheritance
Inherited Members
Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class ReportDataResult
Constructors
ReportDataResult()
Declaration
public ReportDataResult()
Properties
Aggregate
Gets or sets the aggregation method for the report data.
Declaration
public string Aggregate { get; set; }
Property Value
Type | Description |
---|---|
System.String | The aggregation method as a string. |
ChartData
Gets or sets the chart data associated with the report.
Declaration
public string ChartData { get; set; }
Property Value
Type | Description |
---|---|
System.String | The chart data represented as a string. |
DataColumns
Gets or sets the list of data columns.
Declaration
public List<dynamic> DataColumns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> | A list of dynamic types representing data columns. |
DataRows
Gets or sets the list of data rows.
Declaration
public List<dynamic> DataRows { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> | A list of dynamic types representing data rows. |
DataType
Gets or sets the data type of the report data.
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
System.String | The data type as a string. |
DisplayName
Gets or sets the display name of the report data result.
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The display name as a string. |
Format
Gets or sets the format of the report data.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
System.String | The format as a string. |
GaugeData
Gets or sets the gauge data associated with the report.
Declaration
public string GaugeData { get; set; }
Property Value
Type | Description |
---|---|
System.String | The gauge data represented as a string. |
HasQueryParameter
Indicates if the report data is a query parameter.
Declaration
public bool? HasQueryParameter { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | A nullable boolean indicating query parameter property. |
IsMultiselect
Indicates if multiselect is enabled for the report data.
Declaration
public bool? IsMultiselect { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | A nullable boolean indicating multiselect possibility. |
IsTypeModified
Indicates if the Type property has been modified.
Declaration
public bool? IsTypeModified { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | A nullable boolean indicating type modification. |
Lables
Gets or sets the list of labels.
Declaration
public IList<string> Lables { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> | An IList of strings representing labels. |
MapData
Gets or sets the map data associated with the report.
Declaration
public string MapData { get; set; }
Property Value
Type | Description |
---|---|
System.String | The map data represented as a string. |
Name
Gets or sets the name of the report data result.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name as a string. |
Nullable
Indicates if the report data can be null.
Declaration
public bool? Nullable { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | A nullable boolean indicating nullability. |
Prompt
Gets or sets the prompt associated with the report data.
Declaration
public string Prompt { get; set; }
Property Value
Type | Description |
---|---|
System.String | The prompt as a string. |
SelectedItems
Gets or sets the list of selected items.
Declaration
public IList<string> SelectedItems { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> | An IList of strings representing selected items. |
Type
Gets or sets the type of the report data result.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | The type as a string. |
Value
Gets or sets the value of the report data.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value as a string. |
Values
Gets or sets the list of values.
Declaration
public IList<string> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> | An IList of strings representing values. |