Skip to main content

JsonDataSource.RootElement Property

Gets or sets the name of the root element in the associated data source.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

[DefaultValue("")]
public string RootElement { get; set; }

Property Value

Type Default Description
String String.Empty

The root element’s name.

Remarks

This property is used to determine the element in the target JSON object from which data should be retrieved.

This property is set to the root element of the target JSON object by default. You can set this property to any JSON node included in the retrieved JSON data.

Note

The BI Dashboard does not support collection field types. Make sure that the root of a JSON data source has a property with a non-collection type.

If you need to use multiple collections in a single data source, merge them into a single data source. To do this, use the DashboardFederationDataSource class to create a Transformation Query.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RootElement property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also