标签:
exporting: {
buttons: {
contextButton: {
menuItems: [{
text: ‘导出png图片 100宽度‘,
onclick: function () {
this.exportChart({
width: 100
});
}
}, {
text: ‘导出png图片 大图‘,
onclick: function () {
this.exportChart();
},
separator: false
}]
}
}
}
theme主题 可用样式
theme: {
fill: ‘#B7C900‘,//填充颜色
r: 8,//圆角
states: {
hover: {
fill: ‘#0FC900‘,
style: {
color: ‘white‘
},
text:‘恢复原始状态‘
},
},
select: {
stroke: ‘#039‘,
fill: ‘#bada55‘
}
}
每个数据条的name 是提示框里面的文本 提示框里面都有:x轴标签+name+:数据
标签:
原文地址:http://www.cnblogs.com/jinhaoObject/p/4571749.html