Back to Devexpress

DashboardExportOptionBuilder.ImageExportOptions(Action<DashboardImageExportOptions>) Method

dashboard-devexpress-dot-dashboardaspnetcore-dot-dashboardexportoptionbuilder-dot-imageexportoptions-x28-system-dot-action-devexpress-dot-dashboardcommon-dot-dashboardimageexportoptions-x29.md

latest2.5 KB
Original Source

DashboardExportOptionBuilder.ImageExportOptions(Action<DashboardImageExportOptions>) Method

Contains options which define how the dashboard item is exported to the Image format.

Namespace : DevExpress.DashboardAspNetCore

Assembly : DevExpress.Dashboard.v25.2.AspNetCore.dll

NuGet Package : DevExpress.AspNetCore.Dashboard

Declaration

csharp
public DashboardExportOptionBuilder ImageExportOptions(
    Action<DashboardImageExportOptions> config
)
vb
Public Function ImageExportOptions(
    config As Action(Of DashboardImageExportOptions)
) As DashboardExportOptionBuilder

Parameters

NameTypeDescription
configAction<DashboardImageExportOptions>

A delegate used to customize the DashboardImageExportOptions object.

|

Returns

TypeDescription
DashboardExportOptionBuilder

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

DashboardExportOptionBuilder Class

DashboardExportOptionBuilder Members

DevExpress.DashboardAspNetCore Namespace