Skip to content

Commit 684b6de

Browse files
Remove group_by label from stacked bar graphs (see #149) and 'across Programs' from pie chart title.
1 parent 64ef969 commit 684b6de

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

js/donut-chart.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function update_donut_chart_title(chart_id, dropdown) {
6464
var new_title;
6565

6666
if (dropdown == 'data_type') {
67-
new_title = 'Subjects by Assay and Anatomy across Programs';
67+
new_title = 'Subjects by Assay and Anatomy';
6868
} else if (dropdown == 'dcc') {
6969
new_title = 'Samples by Anatomy and CF Program';
7070
}

js/stacked-bar-graph.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ function update_chart_title(chart_id) {
109109
const heading = d3.select('#' + chart_id + '-title');
110110
var y_axis = d3.select('#' + chart_id + '-y-axis option:checked').text();
111111
var x_axis = d3.select('#' + chart_id + '-x-axis option:checked').text();
112-
var group_by = d3.select('#' + chart_id + '-group-by option:checked').text();
113-
var new_title = y_axis + ' by ' + x_axis + ' and ' + group_by;
112+
var new_title = y_axis + ' by ' + x_axis;
114113
heading.text(new_title);
115114
}
116115
}

udashboard.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,17 @@ <h2>Dashboard</h2>
5252

5353
<div id="thumb1" class="thumbnail_chart selected">
5454
<img src='images/chart-2.png' class="thumbnail_chart"></img><br>
55-
Subject count by Data Type and CF Program
55+
Subject count by Data Type
5656
</div>
5757

5858
<div id="thumb2" class="thumbnail_chart">
5959
<img src='images/chart-1.png' class="thumbnail_chart"></img><br>
60-
File count by CF Program and Assay
60+
File count by CF Program
6161
</div>
6262

6363
<div id="thumb3" class="thumbnail_chart">
6464
<img src='images/chart-3.png' class="thumbnail_chart"></img><br>
65-
Subjects by Assay and Anatomy across Programs
65+
Subjects by Assay and Anatomy
6666
</div>
6767

6868
<div id="thumb4" class="thumbnail_chart">

0 commit comments

Comments
 (0)