i'm trying to massage an xrange graph into a timeline like graph and have made an overall awesome widget but i'm running into problems with the Fit and Finish. I'd like to be able to have a YAxis Scrollbar so that i can have many 'Agents' shown in the same graph as well as having the bar darken when hovered over. Unfortunately i can't get any of the attributes from the Highcharts API to actually do anything - i am having the same problem using the jsFiddle they supply you with. See code snipit regarding yAxis and hover state.
yAxis: {
title: {
text: ''
},
minPadding: .11,
scrollbar: { //todo not working -
enabled: true,
showFull: true
},
categories: ['Prototyping', 'Development', 'Testing', 'a', 'b', 'c', 'd', 'e', 'f', 'g'],
reversed: true
},...
states: {
hover: {
enabled: true,
brightness: -0.9 //todo not working WTF
}
},
(link: https://jsfiddle.net/uaqp5tj7/16/#&togetherjs=uufALv7hEj)
if you have any ideas please let me know