tooltip:{formatter:function(){returnthis.series.name+' in '+this.x+': '+Highcharts.numberFormat(this.y,2);}},
Transpose csv
1
2
3
4
data:{csv:csv,switchRowsAndColumns:true},
To add a link to the scatter point
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plotOptions:{scatter:{marker:{radius:3,symbol:'circle',fillColor:this.x>2?"red":"grey"//currently not working
},cursor:'pointer',point:{events:{click:function(){location.href='https://google.com/'+this.options.name;}}},turboThreshold:0}},