dygraph auto-refresh not working properly

initially, I saw my dygraphs working as expected to be refreshed with the latest data for the first few minutes, but after sometime, it did not get the latest updated data anymore. But I can see in the table form that my latest value keeps updating. What are the causes? I saw some similar posting about 5 years back, see Auto-refresh seems to confuse dygraphs · Issue #37 · rstudio/dygraphs · GitHub
So, is that issue being resolved?

My code below:

UpdatedData <- reactive({
   blah blah blah
   -----
   updated_xts
  invalidateLater(60*1000)  ## every minute
  updated_xts
})

output$dygraphA <- renderDygraph({
  updated_xts <- UpdatedData()
   graph <- dygraph(updated_xts)
    graph
})

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.