Skip to content

Commit

Permalink
Merge pull request #13 from mayaradaher/patch-5
Browse files Browse the repository at this point in the history
Update htmlwidgets.qmd
  • Loading branch information
williamorim authored Jul 24, 2024
2 parents df9c67a + 5e16904 commit 10fc19d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htmlwidgets.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -581,9 +581,9 @@ server <- function(input, output, session) {
shinyApp(ui, server)
```

Para acessarmos eventos em um highchart, precisamos adicionar as funções `highcharter::hc_add_event_point()` ou `highcharter::hc_add_event_series`() no código que gera os gráficos. Dessa forma, a informação é adiciona à lista `input` em valores com a seguinte nomenclatura `outputId_eventType`.
Para acessarmos eventos em um highchart, precisamos adicionar as funções `highcharter::hc_add_event_point()` ou `highcharter::hc_add_event_series`() no código que gera os gráficos. Dessa forma, a informação é adicionada à lista `input` em valores com a seguinte nomenclatura `outputId_eventType`.

Por exemplo, para um highchart com `outputId = "grafico"`, teremos
Por exemplo, para um highchart com `outputId = "grafico"`, teremos:

```{r, eval = FALSE}
input$grafico_click
Expand Down

0 comments on commit 10fc19d

Please sign in to comment.