有没有类似d3 heatmap的方法可以在echarts 4 r中缩放热图?(https://github.com/rstudio/d3heatmap)。目的是使用echarts 4 r中的回调函数在点击并悬停在热图上时触发事件,而d3 heatmap没有(据我所知)。
这段代码是从(https://echarts4r.john-coene.com/articles/chart_types.html#heatmap)复制的,添加了画笔。画笔可以显示并选择缩放窗口,但图表不会缩放。
v <- LETTERS[1:10]
matrix <- data.frame(
x = sample(v, 300, replace = TRUE),
y = sample(v, 300, replace = TRUE),
z = rnorm(300, 10, 1),
stringsAsFactors = FALSE
) %>%
dplyr::group_by(x, y) %>%
dplyr::summarise(z = sum(z)) %>%
dplyr::ungroup()
matrix %>%
e_charts(x) %>%
e_heatmap(y, z) %>%
e_visual_map(z) %>%
e_title("Heatmap") %>%
e_brush() # add the brush
字符串
1条答案
按热度按时间pjngdqdw1#
画笔和缩放在echarts中是两个不同的东西:使用
e_datazoom
代替。字符串