如何隐藏 e_pie 上的标签(Echarts4r)?
How I can hide labels on e_pie (Echarts4r)?
嗨,谢谢你读我的书
我制作了一个饼图,我可以删除图表的所有标签,但我找不到这样做的方法,有人知道我该怎么做吗?我使用的代码如下:
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb) |>
e_legend(FALSE)
我想删除这个:
您可以将更多选项传递给 e_pie
函数,包括标签选项,如定义的那样 here:
library(echarts4r)
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb, legend = FALSE, label = list(show=FALSE))
或者,您也可以在适当的地方使用内置函数:
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb) |>
e_legend(show = FALSE) |>
e_labels(show = FALSE)
嗨,谢谢你读我的书 我制作了一个饼图,我可以删除图表的所有标签,但我找不到这样做的方法,有人知道我该怎么做吗?我使用的代码如下:
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb) |>
e_legend(FALSE)
我想删除这个:
您可以将更多选项传递给 e_pie
函数,包括标签选项,如定义的那样 here:
library(echarts4r)
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb, legend = FALSE, label = list(show=FALSE))
或者,您也可以在适当的地方使用内置函数:
mtcars |>
head() |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_pie(carb) |>
e_legend(show = FALSE) |>
e_labels(show = FALSE)