mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 01:51:00 +08:00
e08c299a69
* docs: remove readme and navigation in site * docs: remove v4 core concept docs * docs: update history and lod plugin docs * chore: update dumirc config * docs: add api shape overview doc * docs: update manual docs * docs: update manual and tutorial docs * chore: update dumirc * docs: remove design sector * docs: update docs meta data * docs: update api docs
606 B
606 B
title | order |
---|---|
使用 Iconfont | 10 |
引入
参考帮助文档 中 unicode 引用 一项将 Iconfont 引入项目。
使用
创建文本图形过程中,将 fontFamily
设置为 'iconfont'
即可。例如:
public drawLabelShape(
model: NodeDisplayModel,
shapeMap: NodeShapeMap,
): DisplayObject {
return this.upsertShape(
'text',
'labelShape',
{
text: '&#....;', // 图标代码
fontFamily: 'iconfont'
},
shapeMap,
model,
);
}