summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2020-09-17 10:15:06 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-09-17 10:15:06 +0200
commit24924bb6008b7695b1cdb6e3a0003f9d4affd0cf (patch)
tree824bdb16c4b2a4c233f349b4a7b034f022dc636a
parentbd4f4d680a396692d62bca1ff37967c943a9c0de (diff)
downloadcuirass-24924bb6008b7695b1cdb6e3a0003f9d4affd0cf.tar
cuirass-24924bb6008b7695b1cdb6e3a0003f9d4affd0cf.tar.gz
templates: Do not display chart title.
* src/cuirass/templates.scm (make-line-chart): Do not display chart title.
-rw-r--r--src/cuirass/templates.scm10
1 files 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\