如何更改 voronoiTreemap 图例中的文本颜色
How to change text color in a voronoiTreemap Legend
这是一个例子。文字颜色默认为黑色。
library(voronoiTreemap)
data(ExampleGDP)
gdp_json <- vt_export_json(vt_input_from_df(ExampleGDP))
vt_d3(gdp_json, legend=TRUE)
哇哦!我对自己很满意。我跑题了。
要设置图例文本颜色,请在以下代码中更改 -> '#b21e29':
library(voronoiTreemap)
library(htmlwidgets)
library(dplyr)
data(ExampleGDP)
gdp_json <- vt_export_json(vt_input_from_df(ExampleGDP))
# try number 70032536587832
(plt = vt_d3(gdp_json, legend=TRUE) %>%
onRender("function(el){
legends = el.lastChild.lastChild;
legends.lastChild.setAttribute('style', 'fill: #b21e29;');
}"))
这是一个例子。文字颜色默认为黑色。
library(voronoiTreemap)
data(ExampleGDP)
gdp_json <- vt_export_json(vt_input_from_df(ExampleGDP))
vt_d3(gdp_json, legend=TRUE)
哇哦!我对自己很满意。我跑题了。
要设置图例文本颜色,请在以下代码中更改 -> '#b21e29':
library(voronoiTreemap)
library(htmlwidgets)
library(dplyr)
data(ExampleGDP)
gdp_json <- vt_export_json(vt_input_from_df(ExampleGDP))
# try number 70032536587832
(plt = vt_d3(gdp_json, legend=TRUE) %>%
onRender("function(el){
legends = el.lastChild.lastChild;
legends.lastChild.setAttribute('style', 'fill: #b21e29;');
}"))