Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在搜索如何使用 nvd3.js 在折线图中显示更大的点,但我没有找到任何东西。任何人都可以帮我一把吗?
我希望这些点在图表线上很容易看到。
谢谢。
查看简单折线图中生成的输出后,您可以添加此 CSS,以使所有点可见:
.nvd3 .nv-groups .nv-point { stroke-opacity: 0.5 !important; stroke-width: 10px; }
然而,这更像是一种黑客行为。周围应该有更好的解决方案。如果你想修改更多细节,最好直接切换到 d3.js,而不是使用包装器。