e_draw_p {echarts4r} | R Documentation |
Draw
Description
Draw the chart.
Usage
e_draw_p(proxy)
Arguments
proxy |
An echarts4r proxy as returned by |
Details
Useful if you set draw
to FALSE
in e_charts
.
Examples
## Not run:
library(shiny)
ui <- fluidPage(
echarts4rOutput("chart"),
actionButton("draw", "draw")
)
server <- function(input, output) {
output$chart <- renderEcharts4r({
mtcars |>
e_charts(mpg, draw = FALSE) |>
e_scatter(qsec) |>
e_datazoom()
})
observeEvent(input$draw, {
echarts4rProxy("chart") |>
e_draw_p()
})
}
if (interactive()) {
shinyApp(ui, server)
}
## End(Not run)
[Package echarts4r version 0.4.5 Index]