Skip to content

Instantly share code, notes, and snippets.

@wmealing
Last active November 9, 2015 11:46
Show Gist options
  • Save wmealing/3a3f4ff338030df6e99a to your computer and use it in GitHub Desktop.
Save wmealing/3a3f4ff338030df6e99a to your computer and use it in GitHub Desktop.
https://clojars.org/cljsjs/chartist
Library:
https://gionkunz.github.io/chartist-js/
Converting: "DISTRIBUTED SERIES example"
(def overview-monthly-data (clj->js [{:series [20 60 120 200 180 20 10]}
{:labels ['XS' 'S' 'M' 'L' 'XL' 'XXL' 'XXXL']
}]
))
(def overview-monthly-options(clj->js {:distributeSeries true}))
(js/Chartist.Bar (js/document.getElementById "what")
overview-monthly-data
overview-monthly-options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment