I am supplying a Dashboard screen image with a number of points highlighted in red
General what can be changed on Dashboard as far as look and feel
Can you please send me a Asp.Net MVC 5 example with a Dashboard that you can click on a specific widget that will navigate to another dashboard
|
Please find the following Asp.Net MVC 5 sample for your requirement http://www.syncfusion.com/downloads/support/forum/132119/ze/DashboardViewer_MVC5_Sample_v2.2.0.31-1540948580
Here we have linked a dashboard with Grid widget of a primary dashboard. |
Is it possible to change the look and feel of main container page of dashboard via css, change text fonts and sizes, in the designer I could not find any capability to change text size etc.
|
Yes, you can change the text font settings and sizes via CSS by setting values to the respective property with respect to the class referred on your html file . Please find the following code snippet regarding that,
If you need to change the size of label text/change the font family:
.e-dashboardviewer .e-dbrd-label-control[id=dashboard_Widget_Label_2] span{
// Here “dashboard” refers the id of the whole container div
font-size : 14px !important;
font-family : Times New Roman !important;
}
If you need to increase the size of the banner:
.e-dashboardviewer.e-js .e-dbrd-banner{
height : 60px; // will increase the size of the top bar
line-height : 40px !important; // will align the icons with respect to size changes
}
If you need to change the font family of the widget title/change the size:
.e-dashboardviewer .e-dbrd-control-container[data-widget-id=Gauge_2] .e-control-title{
font-size : 30px;
font-family : Times New Roman;
} |
General what can be changed on Dashboard as far as look and feel |
You can customize the dashboard and the its style using the API customThemeSettings, please find the following help documentation which detailed about that,
|