Highcharts Demo
author(s):
Torstein Hønsi
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/data.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; max-width: 800px; margin: 0 auto"></div>
<div style="max-width: 800px; margin: 0 auto">
<pre id="data">Page,Pageviews,Category
/tech/topliste/google-home-25-witzige-easter-eggs-die-du-kennen-musst-300359,36708,Google Home: 25 witzige Easter Eggs, die Du kennen musst
/tech/news/google-home-25-witzige-easter-eggs-die-du-kennen-musst-300359,7213,Google Home
/tech/news/google-home-die-70-wichtigsten-sprachbefehle-299353,1075,Google Home</pre>
</div>
JavaScript
Highcharts.chart('container', {
data: {
csv: document.getElementById('data').innerHTML,
seriesMapping: [{
// x: 0, // X values are pulled from column 0 by default
// y: 1, // Y values are pulled from column 1 by default
label: 2 // Labels are pulled from column 2 and picked up in the dataLabels.format below
}]
},
chart: {
type: 'column'
},
title: {
text: 'Daily runs'
},
yAxis: {
title: {
text: 'Distance'
}
},
legend: {
enabled: false
},
plotOptions: {
series: {
dataLabels: {
enabled: true,
format: '{point.label}'
}
}
}
});