Skip to main content

DashboardExtractDataSource.DriverName Property

Gets or sets a custom driver used to write data to/read data from the current data extract.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

[Browsable(false)]
[DefaultValue(null)]
public string DriverName { get; set; }

Property Value

Type Default Description
String null

A string that is the driver name.

Remarks

By default, the DashboardExtractDataSource stores data within a file. If necessary, you add a custom logic for writing/reading extract data by implementing the ICustomExtractDriver interface. After you have implemented a custom driver, you can use it in two ways.

Note

Note that the value of DriverName is saved to the dashboard XML definition. This allows you to determine the driver name when opening the dashboard supplied with data using DashboardExtractDataSource with a custom driver.

See Also