Skip to main content

DataInspectorOptionBuilder.AllowInspectRawData(Boolean) Method

Specifies whether to display raw data in the Data Inspector.

Namespace: DevExpress.DashboardAspNetCore

Assembly: DevExpress.Dashboard.v23.2.AspNetCore.dll

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public DataInspectorOptionBuilder AllowInspectRawData(
    bool allowInspectRawData
)

Parameters

Name Type Description
allowInspectRawData Boolean

true, to display raw data in the Data Inspector; otherwise, false.

Returns

Type Description
DataInspectorOptionBuilder

A reference to this instance after the operation has completed.

Remarks

Pass true as the AllowInspectAggregatedData(Boolean) method’s parameter to display aggregated data in the Data Inspector.

When you pass true as a parameter of only one method, the window contains a single grid with raw or aggregated data. The window caption displays the dashboard item caption text and the inspected item type (raw or aggregated) in parentheses.

When you pass true as a parameter of both methods, the window contains two grids with raw and aggregated data and allows a user to switch between them. The window caption displays the dashboard item caption text.

For more information on Data Inspector, refer to the following article: Manage Data Inspector in the ASP.NET Core Dashboard Control.

See Also