傳奇佈局我有興趣的單擊事件改變傳說佈局如下如何切換在highchart
點擊水平 - 底部
第二點擊上部水平
點擊左邊的美德
4th點擊virtical右
我不知道如何可以做到這一點,這是我到目前爲止已經試過。
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
<input id='legend' type='button' value='toggle legend'>
JAVASCRIPT
$(function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
zoomType: 'xy',
marginLeft: 50,
marginBottom: 90
},
yAxis: {
reversed: true,
//min: 0,
//max: 50
},
plotOptions: {
series: {
stacking: 'normal'
}
},
xAxis: {
opposite: true
},
series: [{
name: '01-Jan-2014',
data: [
[28, 10],
[30, 0]
]
}]
});
var last = 0;
$('#legend').click(function(){
var arr = ['vertical','horizontal'];
if(last>arr.length){last=0;}
setTimeout(function() { alert(arr[last++]);},10);
chart.series[0].update({ legend: { layout: arr[last] }});
});
});
你是我的耶穌這次又一次你讓我快樂,它按預期工作,愛你...非常感謝..馬克.. – user3304642