我正在使用echarts.js库获取饼图,
我想将饼图超链接中的每个切片都设置为另一个页面。
我现在使用静态数据点来测试它是否可行 - 并且会在之后更新为动态数据。
下面是pie1a的一个例子 - 我希望T2,T2,T4和N / A引用它们自己的页面。 T2 =" http://localhost/T2.html"。
// ECHART_PIE1a
var echartPie1a = echarts.init(document.getElementById('echart_pie1a'), theme);
echartPie1a.setOption({
tooltip: {
trigger: 'item',
formatter: "{a} <br/>{b} : {c} ({d}%)"
},
legend: {
x: 'right',
y: 'bottom',
data: ['T2', 'T3', 'T4', 'N/A']
},
calculable: true,
series: [{
name: '(TB)',
type: 'pie',
radius: '54%',
center: ['54%', '36%'],
data: [{
value: 438,
name: 'T2'
}, {
value: 1109,
name: 'T3'
}, {
value: 42,
name: 'T4'
}, {
value: 389,
name: 'N/A'
}]
}]
});
答案 0 :(得分:6)
document.Close();
byte[] response = output.ToArray();
好像已经成功了。