Skip to content

Commit 12c8bda

Browse files
committed
Hide No Value Detected by default #196
* In the dashboard, the No Value Detected count data is hidden by default. It can be shown by selecting the value in the legend. * Initially reported in #197 Signed-off-by: Jillian Daguil <[email protected]>
1 parent 9c50c84 commit 12c8bda

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

assets/js/aboutCodeDashboard.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ class AboutCodeDashboard {
4343
data: {
4444
columns: [],
4545
type: "pie",
46-
order: 'desc'
46+
order: 'desc',
47+
hide: 'No Value Detected'
4748
},
4849
color: {
4950
pattern: LEGEND_COLORS
@@ -55,7 +56,8 @@ class AboutCodeDashboard {
5556
data: {
5657
columns: [],
5758
type: "pie",
58-
order: 'desc'
59+
order: 'desc',
60+
hide: 'No Value Detected'
5961
},
6062
color: {
6163
pattern: LEGEND_COLORS
@@ -67,7 +69,8 @@ class AboutCodeDashboard {
6769
data: {
6870
columns: [],
6971
type: "pie",
70-
order: 'desc'
72+
order: 'desc',
73+
hide: 'No Value Detected'
7174
},
7275
color: {
7376
pattern: LEGEND_COLORS
@@ -79,7 +82,8 @@ class AboutCodeDashboard {
7982
data: {
8083
columns: [],
8184
type: "bar",
82-
order: 'desc'
85+
order: 'desc',
86+
hide: 'No Value Detected'
8387
},
8488
color: {
8589
pattern: LEGEND_COLORS

0 commit comments

Comments
 (0)