d3.js C3.js工具提示字体

cuxqih21  于 2022-11-12  发布在  其他
关注(0)|答案(2)|浏览(116)

我在c3js中试过这个例子。
Demo
有人知道如何增加工具提示内容(标题和值)的字体大小吗?
任何帮助都将不胜感激。

ccrfmcuu

ccrfmcuu1#

您可以将自订font-size设定为tspan元素:

tspan {
    font-size: 20px;
}
uemypmqf

uemypmqf2#

覆盖以下选择器的字体值:

.c3-tooltip th {
  /* for the header */
}

.c3-tooltip td.name {
  /* for the title cells */
}

.c3-tooltip td.value {
  /* for the value cells */
}

示例

第一个

相关问题