fix: Changes heatmap color scale to threshold

Updates heatmap color scale from ordinal to threshold to better
represent the range and distribution of data values.
This commit is contained in:
Kumi 2024-11-28 16:01:25 +01:00
parent 2decdba78c
commit 4fb05e6287
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -33,7 +33,7 @@ fetch("/mood/statistics/heatmap/values/")
scale: { scale: {
color: { color: {
domain: domain, domain: domain,
type: "ordinal", type: "threshold",
range: range, range: range,
} }
}, },