Panagiotis Skintzos

Results 12 comments of Panagiotis Skintzos

Fixed this in 70e4d62f4e7b2c431ee9c0e9f8293f9bdca1faea Added `title` and `desc` arguments to `dsvg` function. You can set them in `girafe` function and they'll be forwarded. The result is that: - `title` and...

I preferred to stick with the w3c naming and use `title` and `desc` instead of `alt-title` and `alt-desc`. As for the caption, we'd like to leave it out for now....

Thanks for the suggestion, definitely doable.

This is now done, here is a quick example (it requires the latest github version of ggiraph): ``` library(ggiraph) library(ggplot2) dataset

I confirm it occurring in almost all our custom grob overrides (lines, rects, polygons, etc, except for points and texts). Linux, iOS and Windows all the same. It seems harmless,...

It does not occur in R 4.1.0, but in R 4.2.0 and R devel

It turns out that it is not caused by ggiraph code. The problem occurs just by using `grid` package (R source code) and override a primitive grob with a custom...

Hello @pmur002 , could you please take a look at this? We get stack imbalance warnings when we override some primitive grobs and add a custom drawDetails function. I can...

Yes, as I see in the code diff in grid.c, between R 4.1 and R 4.2, one extra `PROTECT` call is added to those functions (L_*) but the `UNPROTECT` call...

So, we cannot do something in ggiraph for this, it is not a ggiraph bug. It has to be fixed in R source code, I'll try to forward it to...