diff options
Diffstat (limited to 'statistics_app/templates')
-rw-r--r-- | statistics_app/templates/statistics_app/workshop_stats.html | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/statistics_app/templates/statistics_app/workshop_stats.html b/statistics_app/templates/statistics_app/workshop_stats.html index f5f5eb0..fa1b10d 100644 --- a/statistics_app/templates/statistics_app/workshop_stats.html +++ b/statistics_app/templates/statistics_app/workshop_stats.html @@ -210,7 +210,7 @@ document.getElementById("visualization").style.visibility='hidden'; myChart = new Chart(ctx1, { - type: 'bar', + type: 'horizontalBar', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', ' December'], datasets: [{ @@ -245,18 +245,7 @@ 'rgba(191, 191, 191, 1)' ], borderWidth: 1 - }, - { - label: 'Expected Workshops', - type: 'line', - data: {{ workshop_mean }}, - fill: false, - borderColor: [ - 'rgba(0, 0, 128, 0.7)' - ] - - - } + } ] }, |