helgasoft

Results 533 comments of helgasoft

it's a [bug in ECharts](https://github.com/apache/echarts/issues/15189). Workarounds - set ```scale=FALSE```, or ```breaks='Sturges'```, or ```boundaryGap=c('10%', '10%')```.

_width of the error bars_ - yes, it can and will be made customizable for grouped/ungrouped data. _allowing scatter points with error bars_ - I already added a note for...

Did some testing and it looks like most of [labelLayout goodies](https://echarts.apache.org/en/option.html#series-map.labelLayout) do not work for map series. Maybe the best one can do is to hide overlapping labels: ``` e_map(Anzahl,...

@nschwamm - if you are after _Average_mpg_, why use _Count_ ? If you use e_pie(_Count_), the pie slices will represent _Count_ values, not _Average_mpg_ values.     Here is the...

Ok, if more than two values are needed, then you'll have to follow @swsoyee example and "hide" them in a compound data column. ```r fmt % group_by(gear) %>% summarise(count=n(),.groups='drop') %>%...

Here is another, simpler form, especially for **percentages**, based on different [type of formatting](https://echarts.apache.org/examples/en/editor.html?c=pie-simple). ```r mtcars %>% group_by(gear) %>% summarise(count=n(), .groups='drop') %>% e_charts(gear) %>% e_pie(count) %>% e_title('Cars count by gear',...

Wow, a good 5-star question 🏆 There may be a more elegant way of doing this, but here is _my way_. ```r grps

> I was trying to change the colour of the error bars as well as the width of the line segments at both ends. months ago there was a PR...

@swati-soulpageit, your dataset is indeed too large. My RStudio went blank also on loading the chart. A couple of things to try. First, reduce the number of columns. _"517272 rows...

here comes the fancy toolbar, JavaScript to the rescue. The data is there. ```r df % e_charts(x) %>% e_bar(y) %>% e_error_bar(lower, upper) %>% e_tooltip(trigger = "axis", formatter=htmlwidgets::JS(" function(x) { //...