Create line chart with x axis labels
Description
The following code shows how to create line chart with x axis labels.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(function () {<!-- w w w. j av a 2 s . c om-->
$('#container').highcharts({
chart: {
type: 'line'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar']
},
yAxis: {
title: {
text: 'Temperature (?C)'
}
},
series: [{
name: 'Tokyo',
data: [7.0, 6.9, 9.5]
}, {
name: 'London',
data: [3.9, 4.2, 5.7]
}]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>