expressappframework-devexpress-dot-expressapp-dot-dashboards-dot-win-615758f2.md
Contains options that you can use to configure the Dashboards Module.
Namespace : DevExpress.ExpressApp.Dashboards.Win
Assembly : DevExpress.ExpressApp.Dashboards.Win.v25.2.dll
NuGet Package : DevExpress.ExpressApp.Dashboards.Win
public class DashboardsOptions
Public Class DashboardsOptions
The following example demonstrates how to access these settings:
File : MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
builder.Modules
// ...
.AddDashboards(options => {
options.DashboardDataType = typeof(DashboardData);
})
// ...
}
// ...
}
Object DashboardsOptions
See Also