Highcharts Demo
author(s):
Torstein Hønsi
by ninachroscicka
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="height: 400px; width: 800px; margin: 0 auto"></div>
CSS
@import url(https://fonts.googleapis.com/css?family=Raleway:400);
JavaScript
Highcharts.chart('container', {
chart: {
type: 'scatter',
zoomType: 'xy'
},
title: {
text: ''
},
xAxis: {
title: {
enabled: true,
text: 'Dimension 1'
},
startOnTick: true,
endOnTick: true,
showLastLabel: true,
lineColor:'transparent',
tickLength:0
},
yAxis: {
gridLineColor:'transparent',
title: {
text: 'Dimension 2'
}
},
legend:{enabled:false},
plotOptions: {
scatter: {
dataLabels: {
format: "{point.name}",
enabled: true,
style: {
color: '#1B4E80',
font: '24px Raleway, Trebuchet MS, Verdana, sans-serif'
}
},
enableMouseTracking: false
},
series: {
marker: {
enabled: true
/*symbol: 'url(https://www.highcharts.com/samples/graphics/sun.png)'*/
}
}
},
series: [{
name: ' ',
color: '#fff',
data:...