CodeYellowBV / chartist-plugin-legend

Legend plugin for Chartist.js.
https://codeyellowbv.github.io/chartist-plugin-legend/
Other
116 stars 62 forks source link

Fix clickable option to work with 10+ series #23

Closed ajdust closed 8 years ago

ajdust commented 8 years ago

JavaScript uses lexicographical sorting by default with .sort(). As in, 10 comes before 3. This is not what you want when sorting indexes. Use a function to compare. See here http://stackoverflow.com/a/1063027/4351294

SpaceK33z commented 8 years ago

Thanks!