3

我正在使用以下方法成功地将图例放置在我的 JQPlot 折线图之外:

图例:{显示:真实,位置:'sw',位置:'外部'},

但是,这会使图例离图表太近,与我的 yaxis 标签一致。我需要将其进一步向左移动。有没有办法做到这一点?

谢谢。

4

3 回答 3

6

有点晚了,当然,但我明白了!您应该使用 placement: 'outsideGrid'而不是使用placement: 'outside'“outsideGrid”将缩小图例的图形区域,使其不与它混合。

希望这有帮助!

尼科

于 2014-11-19T17:22:45.770 回答
4

查看Legend的 marginTop、marginRight、marginBottom、marginLeft 属性。

你应该能够做到:

legend: { 
    show: true, 
    location: 'sw', 
    placement: 'outside',
    marginLeft: 300
}
于 2013-07-24T17:53:51.993 回答
1

你必须像这样使用它。marginLeft : "300px"

legend: { 
show: true, 
location: 'sw', 
placement: 'outside',
marginLeft: "300px"

}

于 2013-11-18T12:33:22.083 回答