don't display dots on the karma graph

This commit is contained in:
Brian S. Stephan 2016-03-30 17:26:59 -05:00
parent 03047c458f
commit 3e9302c89c
1 changed files with 3 additions and 1 deletions

View File

@ -29,6 +29,8 @@
}
]
};
var myLineChart = new Chart(ctx).Line(data);
var myLineChart = new Chart(ctx).Line(data, {
pointDot: false
});
</script>
{% endblock %}