Create series data with mapping function
Description
The following code shows how to create series data with mapping function.
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 () {<!--from w w w . j av a2s . c o m-->
$('#container').highcharts({
chart: { type: 'area' },
plotOptions: { series: { stacking: true } },
xAxis: { type: 'datetime' } ,
series: [
{name:'foo', data:[1,2,3,4,5].map(function(d,i) { return [new Date(2013,i,1),d*d ]; })},
{name:'bar', data:[1,2,3,4,5].map(function(d,i) { return [new Date(2013,i,1),d*d*d ]; })} ]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>