John Coene
John Coene
It should be responsive I'm surprised it's not right. Shouldn't tabPanel call the resize event when a tab is toggled? That is implemented in echarts4r
You could use [resize proxy](https://echarts4r.john-coene.com/reference/e_resize.html) but really should not have to
Yes, I don't think it's on echarts4r's end. I suspect it's a combination of shiny and htmlwidgets. The graph is initialised with the wrong width and the only way this...
Thanks for sharing this. This is to be expected, the custom theme is passed to [`registerTheme`](https://echarts.apache.org/en/api.html#echarts.registerTheme), themes don't include these specifications I think.
Thanks for flagging this. This should be fixed.
Sorry. Should be good now.
I think you can pass HTML to the tooltip, e.g.: `this is bold`
`data` should be a `list` of `list`s ```r data
Docs on data for point is [here](https://echarts.apache.org/en/option.html#series-line.markPoint.data)
This works for me. ```r data.frame( category = letters[1:4], value_1 = c(40, 50, 60, 70), value_2 = c(10, 30, 90, 60) ) |> echarts4r::e_charts(category) |> echarts4r::e_radar( serie = value_1, name...