Ask Your Question
0

How to display the Label in echarts4r as a percentage?

asked 2023-05-27 12:12:11 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-05-27 12:14:01 +0000

nofretete gravatar image

To display a label in echarts4r as a percentage, you can use the formatter argument in the series function. Here's an example code:

library(echarts4r)

# Create a data frame
df <- data.frame(x = c("A", "B", "C"),
                 y = c(60, 30, 10))

# Generate a pie chart with percentage labels
echarts4r() %>%
  add_pie(df, name = "Label",
          label = list(formatter = "{b}: {d}%")) %>%
  e_theme("dark")

In the formatter argument, we used the {d}% syntax to display the data value as a percentage. We also used the {b} syntax to display the name of the data point. You can customize the formatting based on your needs.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-27 12:12:11 +0000

Seen: 1 times

Last updated: May 27 '23