Pie chart highcharter R

I draw a pie chart using highcharter. when the mouse hovers over each slice <it shows only one value, but I want to add another value so that it shows two! here is an example code: in my code, you see that it draws data using only the column column and B, but I want it to display column C as additional information, like hovering over slices.

library(highcharter)
A <- c("a", "b", "c", "d")
B <- c(4, 6, 9, 2)
C <- c(23, 26, 13, 15)
df <- data.frame(A, B, C)

highchart() %>% 
  hc_chart(type = "pie") %>% 
  hc_add_series_labels_values(labels = df$A, values = df$B)%>%    

  hc_tooltip(crosshairs = TRUE, borderWidth = 5, sort = TRUE, shared = TRUE, table = TRUE,
             pointFormat = paste('<b>{point.percentage:.1f}%</b>')
  ) %>%

  hc_title(text = "ABC",
           margin = 20,
           style = list(color = "#144746", useHTML = TRUE)) 
+4
source share
2 answers

You can make a chart with user names in such high measures: http://jsfiddle.net/zh65suhm/ . That is, changing your prompt to the following:

'<b>{point.percentage:.1f}%</b><br>Custom point: <b>{point.customData}</b>'

customData.

highcharter, , API, , :

hc_add_series(favorite_bars, "pie", hcaes(name = bar, y = percent), name = "Bars") %>%

:

hc_add_series(favorite_bars, "pie", hcaes(name = bar, y = percent, customData = variable_with_customdata), name = "My pie") %>%

, .

+1

, , @ewolden, highcharter.
highcharter pie :

library(highcharter)
A <- c("a", "b", "c", "d")
B <- c(4, 6, 9, 2)
C <- c(23, 26, 13, 15)
df <- data.frame(A, B, C)

# A modified version of the "hc_add_series_labels_values" function
# The "text" input is now available
myhc_add_series_labels_values <- function (hc, labels, values, text, colors = NULL, ...) 
{
    assertthat::assert_that(is.highchart(hc), is.numeric(values), 
        length(labels) == length(values))
    df <- dplyr::data_frame(name = labels, y = values, text=text)
    if (!is.null(colors)) {
        assert_that(length(labels) == length(colors))
        df <- mutate(df, color = colors)
    }
    ds <- list_parse(df)
    hc <- hc %>% hc_add_series(data = ds, ...)
    hc
}

# Set the "text" input in myhc_add_series_labels_values
# point.text is now available inside pointFormat of hc_tooltip
highchart() %>% 
  hc_chart(type = "pie", data=df) %>% 
  myhc_add_series_labels_values(labels=A, values=B, text=C) %>% 
  hc_tooltip(crosshairs=TRUE, borderWidth=5, sort=TRUE, shared=TRUE, table=TRUE,
     pointFormat=paste('<br><b>A: {point.percentage:.1f}%</b><br>C: {point.text}')) %>%
  hc_title(text="ABC", margin=20, style=list(color="#144746", useHTML=TRUE)) 

enter image description here

. D df :

D <- c("Mars", "Jupiter", "Venus", "Saturn")
df <- data.frame(A, B, C, D)
txt <- paste("C:",C," <br>D:", D)

highchart() %>% 
  hc_chart(type="pie", data=df) %>% 
  myhc_add_series_labels_values(labels=A, values=B, text=txt) %>% 
  hc_tooltip(crosshairs=TRUE, borderWidth=5, sort=TRUE, shared=TRUE, table=TRUE,
          pointFormat=paste('<br><b>A: {point.percentage:.1f}%</b><br>{point.text}')) %>%
  hc_title(text = "ABC", margin = 20, style = list(color = "#144746", useHTML = TRUE)) 

enter image description here

+1

Source: https://habr.com/ru/post/1683653/


All Articles