在R中设置highcharter柱形图柱的厚度

在R中设置highcharter柱形图柱的厚度,r,r-highcharter,R,R Highcharter,我想知道是否有一种方法可以在R中设置柱状图的高度 library(highcharter) pokemon%>% count(type_1)%>% arrange(n)%>% hchart(type = "column", hcaes(x = type_1, y = n)) 您可以使用以下选项: pokemon%>% count(type_1)%>% arrange(n)%>% hchart(type = "column", hcae

我想知道是否有一种方法可以在R中设置柱状图的高度

library(highcharter)
pokemon%>%
  count(type_1)%>%
  arrange(n)%>%
  hchart(type = "column", hcaes(x = type_1, y = n))
您可以使用以下选项:

pokemon%>%
  count(type_1)%>%
  arrange(n)%>%
  hchart(type = "column", hcaes(x = type_1, y = n)) %>% 
  hc_plotOptions(column = list(pointWidth = 100))