From 858d86eebbc7744cb183a3f2427f16b588559fae Mon Sep 17 00:00:00 2001 From: Bart Deslagmulder Date: Mon, 9 Jul 2018 20:27:43 +0200 Subject: [PATCH] Add label for first dataset in progress-bar example (#5625) While the second dataset already has a label ("My Second dataset") the first dataset showed "undefined" as a label. Added a label to the first dataset object. --- samples/advanced/progress-bar.html | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/advanced/progress-bar.html b/samples/advanced/progress-bar.html index b97a998ea95..b9c72446e59 100644 --- a/samples/advanced/progress-bar.html +++ b/samples/advanced/progress-bar.html @@ -28,6 +28,7 @@ data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [{ + label: 'My First dataset', fill: false, borderColor: window.chartColors.red, backgroundColor: window.chartColors.red,