John Coene

Results 202 comments of John Coene

Indeed, thank you for reporting this. It's from the JavaScript library the waitress depends on, I'm not sure I'll be able to fix but I'll try.

I just pushed `httr_progress`, you can see an example [here](https://waiter.john-coene.com/#/waitress#httr). Would appreciate it if you could test it.

Oh goodness, so sorry: I forgot to export this function. It's good now.

Right, thanks for reporting this. This is because the total amount of data to be downloaded is not known. https://github.com/r-lib/httr/blob/21ff69f219ad11298854a63b8f753389088cf382/R/progress.R#L40 I'm gonna have to think of a way to sort...

It's currently not possible, I'm going to flag that as possible enhancement. To be scoped out.

You have to go about it this way. ```r library(magrittr) library(echarts4r) USArrests %>% e_charts(Assault) %>% e_scatter(Murder, Rape) %>% e_mark_line( data = list( yAxis = 15, lineStyle = list(color = "red"),...

I pushed a change so it behaves like events and clicking the same point multiple times will trigger the event. Let me know if that works.

Ah, something I had not considered, yet again. The thing is `e_flip_coords` is really just a hack that actually switches `x` and `y` values. Echarts.js does not have a "flip...

Sorry, it's due to an update of the underlying echarts.js library, you can use: ```r mtcars |> tibble::rownames_to_column("modelo") |> top_n(10, modelo) |> e_charts(modelo) |> e_pie(mpg) |> e_legend(FALSE) |> e_tooltip(formatter =...