我正在使用this article之后的rcharts创建一个d3pie图。
我可以创建饼图,现在我想添加类似于this one的工具提示。
到目前为止我的代码是:
require(magrittr)
require(dplyr)
require(rCharts)
df<-data.frame(label=c("group1","group2","group3"),value=c(1,5,4),
stringsAsFactors = FALSE)
pie1<-rCharts$new()
pie1$setLib("http://timelyportfolio.github.io/rChartsExtra/d3pie")
pie1$params$chartspec <- list(header = list(title = list(text = "Title"),
subtitle = list(text = "Subtitle")),
data = list(content = df),
labels = list(lines = list(style = "straight")),
tooltips=list(enabled=TRUE,type= "placeholder",
string="{label}"))
pie1
我不确定是否可以使用rcharts
包含工具提示。
如果有可能我的猜测是问题来自enabled=TRUE
。我还尝试过:enabled="[true]"
,enabled="{true}"
和enabled=T
。他们似乎都没有工作。
我开始学习d3.js
,但是,我想在rmarkdown
中嵌入图表,所以我更倾向于使用基于R的解决方案。