Skip to main content
A newer version of this page is available. .

Microsoft Azure Specifics

The Web Dashboard has exporting specifics when a web application is deployed to Microsoft Azure. If the dashboard or specific dashboard items are exported to PDF or image formats, their content is saved to the Windows Metafile format, which is not supported by Azure. To overcome this limitation, set the DashboardExportSettings.CompatibilityMode property to DashboardExportCompatibilityMode.Restricted at the application startup.

using DevExpress.DashboardCommon;
// ...

void Application_Start(object sender, EventArgs e) {
    DashboardExportSettings.CompatibilityMode = DashboardExportCompatibilityMode.Restricted;
}

In this case, images from the corresponding exported documents will be always rendered as bitmaps.

See Also