gpt4 book ai didi

html - 如何增加 NVD3JS 饼图标签大小

转载 作者:太空宇宙 更新时间:2023-11-04 11:37:00 27 4
gpt4 key购买 nike

我尝试增加 nvd3js 饼图的标签大小,因为它真的很小。所以我读过有关这样做的信息:

        <svg style="font: normal 28px Impact;"></svg>

        <div style="font: normal 28px Impact;">
<svg></svg>
</div>

但这两种方法都不会改变我的标签大小,你有没有其他解决方案来做到这一点?

完整代码:

    <nvd3-pie-chart data="exampleData" id="exampleId" width="500" height="500" x="xFunction()" y="yFunction()" showLabels="true" labelType="percent">
<div style="font: normal 28px Impact;">
<svg></svg>
</div>
</nvd3-pie-chart>

最佳答案

两种方法:

I prefer using CSS

.nv-label text{
font-size:28px;
}

使用 JavaScript

d3.select(".nv-label text").style("font-size","28px")

关于html - 如何增加 NVD3JS 饼图标签大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31669376/

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