Javascript Bar Graph Slider

I am trying to create a slider filter that allows users to select a filter's numerical range. I want to add a histogram image (i.e. Svg) as the background of the slider. I am currently considering d3.js or jQuery Sparkline and the jQuery slider or native HTML5 slider element. Can anyone give any suggestions in the Javascript library?

+3
source share
1 answer

For comparison:

  • <input type="range">: native , does not require an additional library.
  • JQuery slider: Cross browser , can have a lot of control over appearance.
  • Sparkline: jQuery, ( , )

, , , , . jQuery, .

+2

All Articles