Echart JS を使用して棒グラフを作成しました。タイトル バーのクリックをカスタマイズするにはどうすればよいですか。triggerEvent を使用してみましたが、タイトルのクリックでは機能せず、統計でのみ機能します。
var myChart = echarts.init(document.getElementById('main'));
function openTab(){
// Custom code will go here
return 'https://www.google.com'
}
option = {
title: {
x: 'left',
text: '12 total',
link : function(){
openTab();
}
},
grid: {
left: 50,
top: 50,
right: 50,
bottom: 0
},
xAxis: [{
type: 'category',
show: false,
data: ['Test 1', 'Test 2']
}],
yAxis: [{
type: 'value',
show: false,
min: 0
}],
series: [{
type: 'bar',
itemStyle: {
normal: {
color: '#3b4563',
label: {
show: true,
position: 'top',
formatter: '{c} {b}'
}
}
},
data: ['2', '10']
}]
};
myChart.setOption(option);
https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-barを使用しました