这是我用R
library(tidyverse)
library(highcharter)
library(gapminder)
hchart(gapminder::gapminder,
"column",
backgroundColor = 'red',
hcaes(x = year, y = lifeExp, size = pop),
colorByPoint = TRUE)
我在这里检查了backgroundColor Highcharts Doc,它看起来是改变背景颜色的正确方法,但它不起作用。
有人帮忙吗?
1条答案
按热度按时间r1zk6ea11#