gpt4 book ai didi

charts - 如何更改 NVD3 图表中的图例位置?

转载 作者:行者123 更新时间:2023-12-03 15:17:04 25 4
gpt4 key购买 nike

有谁知道如何相对于图形本身在 NVD3 图表中重新定位图例?

默认情况下它在顶部,我希望它放在一边(更好地利用我的应用程序中的空间)

我想做的一个例子:
enter image description here

最佳答案

在撰写本文时(2015 年 7 月 2 日) nvd3 支持将图例放在饼图的右侧。

初始化图形时,设置 legendPositionright .

例子:

nv.addGraph(function() {
var chart = nv.models.pieChart()
.x(function(d) { return d.label })
.y(function(d) { return d.value })
.legendPosition("right");


svg.datum(piedata).call(chart);

return chart;
});

http://nvd3-community.github.io/nvd3/examples/documentation.html#pieChart

关于charts - 如何更改 NVD3 图表中的图例位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17416895/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com