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

How to: Create an ASP.NET MVC Dashboard Designer Application with Predefined Data Sources

  • 5 minutes to read

This example shows how to create an ASP.NET MVC Dashboard Designer application and provide data for dashboards.

The project contains a simple dashboard and two available data sources: the XML and OLAP data sources. You can use these data sources to create a new dashboard. To learn how to create an MVC Designer application from scratch, see the following topic: Create an ASP.NET MVC Designer.

using System.Web;
using System.Web.Mvc;

namespace MVCxDashboard_PredefinedDataSources {
    public class FilterConfig {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters) {
            filters.Add(new HandleErrorAttribute());
        }
    }
}