1. 程式人生 > >Highcharts 曲線區域圖

Highcharts 曲線區域圖

一 程式碼

<html>
<head>
<meta charset="UTF-8" />
<title>Highcharts 曲線區域圖</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
$(document).ready(function() {
   //曲線區域圖
   var chart = {
      type: 'areaspline'
   };
   var title = {
      text: '一週水果平均消費'
   };
   var subtitle = {
      style: {
         position: 'absolute',
         right: '0px',
         bottom: '10px'
      }
   };
   var legend = {
      layout: 'vertical',
      align: 'left',
      verticalAlign: 'top',
      x: 150,
      y: 100,
      floating: true,
      borderWidth: 1,
      backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
   };
   // X軸
   var xAxis = {
      categories: ['週一','週二','週三','週四','週五','週六','週日']
   };
   // Y軸
   var yAxis = {
      title: {
         text: '水果單位'
      }
   };
   var tooltip = {
       shared: true,
       valueSuffix: ' units'
   };
   var credits = {
       enabled: false
   }
   var plotOptions = {
      areaspline: {
         fillOpacity: 0.5
      }
   };
   var series= [{
        name: '小明',
            data: [3, 4, 3, 5, 4, 10, 12]
        }, {
            name: '小馬',
            data: [1, 3, 4, 3, 3, 5, 4]
      }
   ];

   var json = {};
   json.chart = chart;
   json.title = title;
   json.subtitle = subtitle;
   json.xAxis = xAxis;
   json.yAxis = yAxis;
   json.legend = legend;
   json.plotOptions = plotOptions;
   json.credits = credits;
   json.series = series;
   $('#container').highcharts(json);

});
</script>
</body>
</html>

二 執行結果