FAQ/How-do-I-customize-my-dashboard-viewer-page.md
... ...
@@ -0,0 +1,46 @@
1
+#How do I customize my dashboard viewer page
2
+
3
+[[_TOC_]]
4
+
5
+##Question
6
+
7
+How can I customize my dashboard viewer page, and what can I customize?
8
+
9
+##Answer
10
+
11
+The dashboard list is not natively sorted. There is no maximum number of dashboard tiles, though browser performance will be impacted by each tile and large dashboards may load slowly on some systems (30+ tiles). You may override and customize these items:
12
+
13
+###Dashboard Color
14
+
15
+Typically, this is stored in cookies on a given user's computer. You can force a given image by overriding:
16
+
17
+Resources/components/dashboard/templates/toolbar.html
18
+
19
+Inside of which is the angular component:
20
+
21
+<div izenda-dashboard-background ... >
22
+
23
+###Dashboard Verbose List
24
+
25
+The text links to each dashboard in the dashboard viewer can be turned off, leaving only the folder to navigate category/dashboard name. Modify this file:
26
+
27
+Resources/components/dashboard/templates/toolbar.html
28
+
29
+Find this element:
30
+
31
+<div class="iz-dash-linkspanel-container"
32
+ ng-show="!toolbarController.isButtonBarVisible">
33
+
34
+And change it to:
35
+
36
+<div class="iz-dash-linkspanel-container" ng-show="false">
37
+
38
+###Dashboard Background Image
39
+
40
+In dashboard.css, you can override the following class:
41
+
42
+"iz-dash-background"
43
+
44
+And establish some property such as:
45
+
46
+background-image: url('Resources\images\ExampleBackground.png');
... ...
\ No newline at end of file