如何调整轴文本 - dc.js

时间:2015-07-19 01:50:54

标签: css dc.js

我是dc.js的第一次使用者,我想更改图表轴上文本的字体颜色和大小。有没有人知道一种快速简便的方法呢?

2 个答案:

答案 0 :(得分:5)

.dc-chart .axis text {
  font-size: /* Insert font size */;
  color: /* Insert color here */;
}

答案 1 :(得分:0)

对于字体颜色,它的效果更好:

.dc-chart .axis text {fill:white; }