HighCharts之2D堆面積圖

來源:互聯網
上載者:User

HighCharts之2D堆面積圖


1、HighCharts之2D堆面積圖源碼

StackedArea.html:

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>HighCharts 2D堆面積圖</title><script type="text/javascript" src="../scripts/jquery-1.11.0.js"></script><script type="text/javascript" src="../scripts/js/highcharts.js"></script><script type="text/javascript">     $(function(){     $('#stackedAreaChart').highcharts({     chart: {                 type: 'area'             },             title: {                 text: '2013年水果銷售量'             },             subtitle: {                 text: '水果銷量'             },             xAxis: {                 categories: ['一月', '二月', '三月', '四月', '五月', '六月', '七月','八月','九月','十月','十一月','十二月'],                 tickmarkPlacement: 'on',                 title: {                     enabled: false                 }             },             yAxis: {                 title: {                     text: '銷量(kg)'                 },                 labels: {                     formatter: function() {                         return this.value / 1000;                     }                 }             },             tooltip: {                 shared: true,                 valueSuffix: ' kg'             },             plotOptions: {                 area: {                     stacking: 'normal',                     lineColor: '#666666',                     lineWidth: 1,                     marker: {                         lineWidth: 1,                         lineColor: '#666666'                     }                 }             },             series: [{                 name: '蘋果',                 data: [561, 145, 365, 879, 1245, 345, 268,654,945,451,615,341]             }, {                 name: '梨子',                 data: [306, 207, 451, 654, 354, 245, 874,652,478,984,875,243]             }, {                 name: '橘子',                 data: [156, 421, 214, 754, 410, 623, 894,451,652,874,356,524]             }, {                 name: '荔枝',                 data: [851, 331, 554, 245, 439, 718, 245,653,451,698,321,684]             }, {                 name: '草莓',                 data: [245, 352, 852, 746, 313, 430, 246,895,675,235,654,745]             }]         });     });</script></head><body>   <div id="stackedAreaChart" style="width: 1200px; height: 500px; margin: 0 auto"></div></body></html>

2、運行結果


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.