我正在使用https://www.npmjs.com/package/highcharts-angular在Angular中生成高级图表。
自定义导出按钮不会显示在图表上。当我使用angular4时,使用https://www.npmjs.com/package/angular2-highcharts,自定义按钮显示。但是,我需要将我的图书馆改为官方图书馆。还有其他人有这个问题吗?
this._chartOptions_Graph_Default = {
title: {
text: 'title'
useHTML : true,
},
series: seriesWrapper[0],
legend: {
enabled: true
},
yAxis: {
visible: true,
},
xAxis: {
type: 'datetime'
},
plotOptions: {
series: {
states: {
hover: {
enabled: false // hover
},
},
animation: false,
gapSize: 2,
},
turboThreshold : 0,
},
tooltip: { enabled: true },
exporting :{
buttons:{
customButton: {
text: 'Custom Button',
onclick: function () {
alert('You pressed the button!');
}
}
}
},
chart: {
zoomType : 'x'
},
}