文本字段也可做自定义专题图

可以,需要通过字段表达式来制作,表达式的格式如下:
1、对于SDB数据源:
(1)对于符号样式
switch(pointtype='汽车',1110,pointtype='火车',1120,pointtype='飞机',1130,pointtype='大炮',1140)
(2)对于符号颜色
switch(pointstatus='开',255,pointstatus='停',0)
2、对于SqlServer数据源
(1)对于符号样式
case pointtype when '汽车' then 1110 when '火车' then 1120 when '飞机' then 1130 else 1140 end
(2)对于符号颜色
case pointstatus when '开' then 255 else 0 end

原文地址:https://www.cnblogs.com/emily_fly/p/1505150.html