如图,地图的提示后面怎么加单位啊,js怎么写

微信截图_20220127095640.png微信截图_20220127091348.png

FineReport 不认识路的司机 发布于 2022-1-27 09:13 (编辑于 2022-1-27 09:55)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
snrtuemcLv8专家互助
发布于2022-1-27 09:17(编辑于 2022-1-27 10:17)

function(){ return this.name+"\n"+this.seriesName+":"+this.value+"万元";}

image.png

======================

具体可以参考

自定义地图标签和提示点位置-https://help.fanruan.com/finereport10.0/doc-view-1717.html

=====================

image.png

function() {  var points = this.points;  var total = '<div style="width:100%;background - color: #808080;color:white">';  total += '<div align=left style = "font-size:16px" > ' + this.name ;  total += '<div align=left style = "font-size:13px" > ●' + points[0].seriesName + ': ' + FR.contentFormat(points[0].value, '') +'平方单位'+ '</div>'; total += '<div align=left style = "font-size:13px" > ●' + points[1].seriesName + ': ' + FR.contentFormat(points[1].value, '') +'数量单位'+ '</div>'; total += '<div align=left style = "font-size:13px" > ●' + points[2].seriesName + ': ' + FR.contentFormat(points[2].value, '') +'费用单位'+ '</div>'; return total; }
  • 3关注人数
  • 367浏览人数
  • 最后回答于:2022-1-27 10:17
    请选择关闭问题的原因
    确定 取消
    返回顶部