The Dashboard is one of my favorite products at DevExpress! I am super excited to announce two exciting features coming in 14.1. The first is a new Server Mode which dramatically speeds up our already rich dashboards. The second is a new extension for incorporating dashboards into your ASP.NET MVC applications.
Server Mode

Push the button – it makes things fast. The main idea is the same for all of our Server-Mode-Enabled products: we offload the hard processing to the server. It is indeed a fantastic addition to the tool.
ASP.NET MVC Extension
We have made adding extensions (in general) a whole lot easier in 14.1.

All you need to do is right click on the View and select “Insert DevExpresss MVC Extension v14.1” to fire off the wizard above.

We drop the necessary code (and partials) into the project for you. All that is left is to specify the location of the dashboard itself:
class DashboardViewerSettings {
public static DashboardSourceModel Model {
get { return DashboardSourceModel(); }
}
private static DashboardSourceModel DashboardSourceModel() {
DashboardSourceModel model = new DashboardSourceModel();
model.DashboardSource = @"~\MyDashboard.xml";
return model;
}
}
Alternatively you can use a Visual Studio created dashboard as follows:
class DashboardViewerSettings {
public static DashboardSourceModel Model {
get {
return DashboardSourceModel();
}
}
private static DashboardSourceModel DashboardSourceModel() {
DashboardSourceModel model = new DashboardSourceModel();
model.DashboardSource = typeof(Dashboard1);
return model;
}
}
I think you’ll like what we’ve done!
Final Words
We are committed to innovation in the analytics area. Our dashboard tool is a manifestation of that commitment. In the next post I will show you some pretty fantastic additional features we will be introducing to our dashboards.
As always, if there are any comments and/or questions, feel free to get a hold of me!
Seth Juarez
Email: sethj@devexpress.com
Twitter: @SethJuarez
Free DevExpress Products – Get Your Copy Today
The following free DevExpress product offers remain available. Should you have any questions about the free offers below, please submit a ticket via the
DevExpress Support Center at your convenience. We’ll be happy to follow-up.