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.
我想增加使用 D3 标记我的图例的数字的大小。传说是这样制作的:
map.legend_axes = d3.svg.axis() .scale(map.legend_scales) .orient('bottom') .tickSize(map.settings.legend.ticks);
我可以通过一个参数来增加数字的大小吗?
添加一个增加字体大小的 CSS 类,然后将该类添加到轴上的文本中:
d3.selectAll("axisElement") .classed("large-font", true);