timothyrenner / svl

A declarative language for dashboards and reports
https://timothyrenner.github.io/svl
MIT License
8 stars 1 forks source link

Histogram appears to be ignoring labels? #44

Closed timothyrenner closed 5 years ago

timothyrenner commented 5 years ago
DATASETS
    bigfoot "data/bigfoot_sightings.parquet"

HISTOGRAM bigfoot
    X temperature_mid LABEL "Mid Temperature (F)"
    STEP 1
    TITLE "Mid Temperature"

CONCAT(
HISTOGRAM bigfoot
    X temperature_low LABEL "Low Temperature (F)"
    STEP 1
    TITLE "Low Temperature"

HISTOGRAM bigfoot
    X temperature_high LABEL "High Temperature (F)"
    STEP 1
    TITLE "High Temperature"
)

This script didn't produce labels correctly.