Highcharter树形图能显示百分比吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Highcharter树形图能显示百分比吗?相关的知识,希望对你有一定的参考价值。
如何将百分比信息添加到highcarter treemap工具提示?
我尝试将{point.percentage:.0f}添加到hc_tooltip,但它不起作用。
require(treemap)
require(highcharter)
data("GNI2014")
tm <- treemap(
GNI2014,
index = c("continent", "iso3"),
vSize = "population",
vColor = "GNI",
type = "value"
)
hctreemap(tm = tm) %>%
hc_tooltip(
pointFormat = "<b>{point.name}</b><br> {point.value:.0f} <br>{point.percentage:.0f}")
答案
以下是使用tooltip.pointFormatter
函数在JS中执行此操作的示例:http://jsfiddle.net/kkulig/chdn4r0d/
它可以在Highcharter中完成,如下所示:
hc_tooltip(pointFormatter = JS("function(){/* function body goes here*/}")
以上是关于Highcharter树形图能显示百分比吗?的主要内容,如果未能解决你的问题,请参考以下文章