I was working on some highchart stuff regarding removing some things from color axis, it all works great but as you know jsfiddle works on jquery, i managed to get it working with js
load:function(nani){
$(" .highcharts-coloraxis-grid > path, .highcharts-coloraxis-labels > text ").remove();
},
redraw:function(nani){
$(" .highcharts-coloraxis-grid > path, .highcharts-coloraxis-labels > text ").remove();
},
but when its time to move it to plain js I really have no idea how to do it. Does anyone have solution how to translate this ? Thanks Here is the whole jsfiddle http://jsfiddle.net/wf6x4ojh/4/