Guille

Results 24 comments of Guille

What version of Vaadin Framework and Vaadin Charts are you using? I wasn't able to reproduce it

Vaadin Charts 3.2.0 includes a version upgrade in the underlying charting library which had [some issues with batik compatibility](https://github.com/highcharts/highcharts/issues/5590)

As mentioned in vaadin/framework#9719 the issue is with `"translate(0,-9000000000)"`. Until the version is upgraded, one workaround is to replace `translate(0,-9000000000)` with `translate(0,-9999)` in the generated SVG

Another possible workaround is to change the location of the drill up button: ``` ButtonPosition position = new ButtonPosition(); position.setY(-60); position.setX(-40); conf.getDrilldown().getDrillUpButton().setPosition(position); ```

This seems to be related to the issue highcharts/highcharts#5688 of the underlying charting library. It should be fixed once we update to next version. Thanks for sharing the workaround!

I did some research about this, and it seems if the point has drilldown there is no PointClickEvent by design, and that client-side doesn't have enough information at the moment...

Thanks for reporting this, IIRC current behavior is that it does a single effort to create the files, but that's unfortunate as you say as it won't recover from an...

I did a small example of how to add one Highcharts extension some time ago, you can check it in https://github.com/alvarezguille/charts-export-csv Main steps are explained in [readme](https://github.com/alvarezguille/charts-export-csv#step-by-step) Regarding the version...

This looks like a duplicate of #1122, I won't close it because it seems to also be affecting Firefox now. There is an open PR to fix `ComboBoxElement#clear()` implementation https://github.com/vaadin/framework/pull/11430...

One possible location for such examples is `tutorial-flow-data-provider.asciidoc`