快速提问。
是否可以在图表的某处添加一个简单的按钮(最好是在图例的底部)在 HighCharts 中以某种方式做到这一点。
谢谢你。
I'm not sure how to to this in GWT wrapper, but in Highcharts, you can create buttons using renderer, see in source code:
/**
* Create a button with preset states
* @param {String} text
* @param {Number} x
* @param {Number} y
* @param {Function} callback
* @param {Object} normalState
* @param {Object} hoverState
* @param {Object} pressedState
*/
button: function(...) { }
我找不到它的确切 api。然而,Highchart Demo 在图表的右上角显示了一个下拉菜单。您需要在他们的源代码中进行调查并尝试您的解决方案。