Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@luxbock

luxbock/a.clj Secret

Created June 26, 2014 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luxbock/425ae5912656b9ff7803 to your computer and use it in GitHub Desktop.
Save luxbock/425ae5912656b9ff7803 to your computer and use it in GitHub Desktop.
(.. chart -xAxis (axisLabel "Time")
(tickFormat (fn [d] (.. js/d3 -time (format "%x")))))
chart.xAxis
.tickFormat(function(d) {
return d3.time.format('%x')(new Date(d))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment