Highcharts 反轉x軸與y軸
阿新 • • 發佈:2018-12-15
一 程式碼
<html> <head> <meta charset="UTF-8" /> <title>Highcharts 反轉x軸與y軸</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() { //圖表型別 //將 chart 的 inverted 屬性設定為 true,X軸為垂直,Y軸為水平的。 var chart = { type: 'area', inverted: true }; //標題 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: '數量' }, labels: { formatter: function () { return this.value; } }, min: 0 }; var plotOptions = { area: { fillOpacity: 0.5 } }; var credits = { enabled: false }; //資料 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>
二 執行結果