Skip to content

Instantly share code, notes, and snippets.

@arossouw
Created February 3, 2017 13:32
Show Gist options
  • Save arossouw/8026f77e162100ced1c74387f0255624 to your computer and use it in GitHub Desktop.
Save arossouw/8026f77e162100ced1c74387f0255624 to your computer and use it in GitHub Desktop.
Highcharts.chart('container', {
title: {
text: 'Chart without categories, falls back to numbers'
},
yAxis: {
title: {
text: 'Numbers'
}
},
plotOptions: {
line: {
marker: {
enabled: false
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
showInLegend: false
}]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment