如果你的字体文件是pingfang.ttf,将改文件复制到 dataviz-web/src/fonts/路径下。
dataviz-web/src/css路径下的style-xxx.css和play_style-xxx.css两个文件中填加如下内容。
@font-face {
font-family: 'PingFang';
src: url('../fonts/pingfang.ttf') format('truetype');
}
如果想在图表中使用,可以修改详细属性中对应的fontFamily。
label: {
normal: {
show: true,
position: "outside",
formatter: "{b}: {d}%",
textStyle: {
color: "rgb(44, 44, 44)",
fontStyle: "normal",
fontWeight: "normal",
fontFamily: "pingfang",
fontSize: 14
}
}
},
富文本添加字体,需要修改dataviz\src\js\lib\ckeditor\config.js中的
config.font_names='微软雅黑/微软雅黑;宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;Meiryo UI/Meiryo UI;Impact/Impact';
添加一项,"平方字体/PingFang"。