I have an area on my page that show a couple years worth of population data, in a month by month spread.
What i am trying to do is creating a small slider/scrollbar so users can scroll left to right to view the data.
As I am trying to integrate AngularJS within my application, i have tried using:
https://github.com/asafdav/ng-scrollbar
See this updated plunker: http://plnkr.co/edit/v6QBOq3rrBkcOLhLwFme?p=preview
This works great when sliding up and down, but can can i adapt so that users can slide left to right?
UPDATE:
I've attempted to replicate the "Horizontal scroll with buttons and caps" example found in harnishdesign post from here: http://jscrollpane.kelvinluck.com/caps.html
My Fiddle: http://jsfiddle.net/F6dk5/
However the scroll doesnt work.
$(function () {
$('.scroll-pane').jScrollPane({
showArrows: true,
horizontalGutter: 30,
verticalGutter: 30
});
});