如何更改 dc.js 中饼图和行图标签的字体大小?
How do I change the font size of my labels on pie charts and row charts in dc.js?
我想为行图和饼图上的标签调大字体,但我不确定该怎么做。有人对我如何解决这个问题有什么建议吗?
在您的 CSS 文件中包含
.dc-chart .pie-slice {
font-size: /* Put the size you want here */;
}
.dc-chart g.row text {
font-size: /* Put the size you want here */;
}
将来,如果您使用的是 chrome,您可以通过右键单击然后选择 "Inspect Element." 使用 chrome 开发人员工具,然后您可以找到您需要的内容改变并使用不同的值。
我想为行图和饼图上的标签调大字体,但我不确定该怎么做。有人对我如何解决这个问题有什么建议吗?
在您的 CSS 文件中包含
.dc-chart .pie-slice {
font-size: /* Put the size you want here */;
}
.dc-chart g.row text {
font-size: /* Put the size you want here */;
}
将来,如果您使用的是 chrome,您可以通过右键单击然后选择 "Inspect Element." 使用 chrome 开发人员工具,然后您可以找到您需要的内容改变并使用不同的值。