我无法在容器 div Highchart 中放置标题来导出或打印(使用 exporting.js)带有附加信息的图表。我尝试使用一些附加,但它保持在 div.container 的限制范围内而不是外部,例如:
chart.renderer.image('icons/custom/ERI_UF_rgb.png ', 0, -50, 120, 48).add();
chart.renderer.text('This is the footer text. limited It has text
space based on chart width', 10, 265)
.css({
color: '# 4572A7'
fontSize: '12px '
})
.add();
chart.renderer.text('This is the sub-footer text. Avoid covering
credits text on bottom', 10, 280)
.css({
color: '# 4572A7'
fontSize: '12px '
})
.add();
有人对此有解决方案吗?我也接受来自打印或导出某些 div 的库的建议。