templates: Do not display chart title.

* src/cuirass/templates.scm (make-line-chart): Do not display chart title.
This commit is contained in:
Mathieu Othacehe 2020-09-17 10:15:06 +02:00
parent bd4f4d680a
commit 24924bb600
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 5 deletions

View File

@ -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\