我正在使用以下方法成功地将图例放置在我的 JQPlot 折线图之外:
图例:{显示:真实,位置:'sw',位置:'外部'},
但是,这会使图例离图表太近,与我的 yaxis 标签一致。我需要将其进一步向左移动。有没有办法做到这一点?
谢谢。
有点晚了,当然,但我明白了!您应该使用
placement: 'outsideGrid'
而不是使用placement: 'outside'
“outsideGrid”将缩小图例的图形区域,使其不与它混合。
希望这有帮助!
尼科
查看Legend的 marginTop、marginRight、marginBottom、marginLeft 属性。
你应该能够做到:
legend: {
show: true,
location: 'sw',
placement: 'outside',
marginLeft: 300
}
你必须像这样使用它。marginLeft : "300px"
legend: {
show: true,
location: 'sw',
placement: 'outside',
marginLeft: "300px"
}