Force all the graphs to 0 minimum

This patch updates all the graphs to have a minimum
Y value of 0.  Doesn't make sense to have negative messages.
This commit is contained in:
Hemna 2021-04-02 11:57:06 -04:00
parent d6806c429c
commit 3ac42edd82
1 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,12 @@
};
function start_charts() {
Chart.scaleService.updateScaleDefaults('linear', {
ticks: {
min: 0
}
});
memory_chart = new Chart($("#memChart"), {
label: 'Memory Usage',
type: 'line',