dashboard-js-devexpress-dot-dashboard-690e90fd.md
Contains options related to exporting a dashboard/dashboard item to Excel format.
export interface DashboardExcelExportOptions
Specifies a character used to separate values in an exported CSV document.
CsvValueSeparator?: string
| Type | Description |
|---|---|
| string |
A string value that specifies the character used to separate values in an exported CSV document.
|
Note that the CsvValueSeparator property is in effect when the Format is set to Csv.
Specifies the position of the dashboard state (such as master filter or current parameter values) in the exported document.
DashboardStatePosition?: DashboardStateExcelExportPosition
| Type | Description |
|---|---|
| DashboardStateExcelExportPosition |
The DashboardStateExcelExportPosition object that specify the position of the dashboard state in the exported Excel document.
|
To add a master state to the exported document, use the ExportFilters property. To export current parameter values, set the ExportParameters property to true.
Specifies whether to add the state of master filter items to the exported document.
ExportFilters?: boolean
| Type | Description |
|---|---|
| boolean |
true , to add the state of master filter items to the exported document; otherwise, false.
|
To specify the position of the dashboard state (that includes the state of master filter items), use the DashboardStatePosition property.
Specifies whether to add current parameter values to the exported document.
ExportParameters?: boolean
| Type | Description |
|---|---|
| boolean |
true , to add current parameter values to the exported document; otherwise, false.
|
To specify the position of the dashboard state (including current parameter values), use the DashboardStatePosition property.
Specifies the Excel format in which the dashboard item is exported.
Format?: DashboardExcelFormat
| Type | Description |
|---|---|
| DashboardExcelFormat |
A DashboardExcelFormat object that specifies the Excel format in which the dashboard item is exported.
|
Specifies whether to add current parameter values to the exported document.
IncludeHiddenParameters?: boolean
| Type | Description |
|---|---|
| boolean |
true to add current parameter values to the exported document; otherwise, false.
|
Warning
If the IncludeHiddenParameters client property is enabled, a user can still obtain access to all hidden parameters and associated values.
Encode parameter values wherever/whenever possible. Never store sensitive/unencrypted information within dashboard parameters.