From 24924bb6008b7695b1cdb6e3a0003f9d4affd0cf Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Thu, 17 Sep 2020 10:15:06 +0200 Subject: [PATCH] templates: Do not display chart title. * src/cuirass/templates.scm (make-line-chart): Do not display chart title. --- src/cuirass/templates.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm index 29162de..e442078 100644 --- a/src/cuirass/templates.scm +++ b/src/cuirass/templates.scm @@ -871,11 +871,11 @@ and BUILD-MAX are global minimal and maximal row identifiers." (data . ,dataset))) datasets labels colors))))) (options . ((responsive . #t) - (tooltips . ((enabled . #f))) - (legend . ((display . ,legend?))) - (title . ((display . #t) - (text . ,title))) - (scales . ,scales)))))) + (tooltips . ((enabled . #f))) + (legend . ((display . ,legend?))) + (title . ((display . #f) + (text . ,title))) + (scales . ,scales)))))) `((script ,(format #f "window.addEventListener(\"load\", function(event) {\ window.~a = new Chart\