Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用highcharts 3.0。我想在图例旁边画一个框。有什么方法可以找到图例坐标,以便我可以使用这些坐标在图例旁边绘制一个矩形。
您能否建议我一种方法,以便我可以获得图例坐标
或者有没有其他方法可以在图例旁边画一个框。
提前致谢
您可以使用 chart.legend.group.translateX / chart.legend.group.translateY
chart.renderer.text('Series 1', chart.legend.group.translateX,chart.legend.group.translateY) .add();
http://jsfiddle.net/sbochan/K2QqC/