DashboardExportOptionBuilder.ImageExportOptions(Action<DashboardImageExportOptions>) Method
In This Article
Contains options which define how the dashboard item is exported to the Image format.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.2.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
#Declaration
public DashboardExportOptionBuilder ImageExportOptions(
Action<DashboardImageExportOptions> config
)
#Parameters
Name | Type | Description |
---|---|---|
config | Action<Dashboard |
A delegate used to customize the Dashboard |
#Returns
Type | Description |
---|---|
Dashboard |
A reference to this instance after the operation has completed. |
#Remarks
The code sample below shows how to configure Image export options:
cshtml
@(Html.DevExpress().Dashboard("dashboardControl1")
.Width("100%")
.Height("100%")
.OnBeforeRender("onBeforeRender")
.Extensions(ext => {
ext.DashboardExport(options => {
options.ImageExportOptions(img => {
img.ShowTitle = DevExpress.Utils.DefaultBoolean.False;
});
});
})
)
See Also