Jonathan Owen

Results 36 comments of Jonathan Owen

Sorry, I too have been away from this for a while. I'll see if I can pull those together shortly. Thanks.

I added some checks for `geom_text` and `geom_rect`, but I'm not sure how to test the `guide = "none"` change without introducing a dependency on `dendextend` (see code below which...

I think this is resolved with the latest version of `rhandsontable`. Please re-open this issue if you are still running into problems.

I may not be understanding the issue. This is what I see when I run the shiny code above, and if I change the `format` parameter, I'm seeing the table...

Now I understand the issue. This looks to be an issues with `handsontable`, so I'd suggest filing a bug with that project, referencing this issue as an example. There does...

I'm actually going to take back my suggestion, as I think there is an issue with how the data set is being handled when it goes from JS into R....

We've pushed a possible fix to the 'devel' branch. If you have time, please test it out and let us know if things are working better. ``` devtools::install_github('jrowen/rhandsontable@devel') ```

I'd suggest trying to set the decimal format for that column and then let us know if the problem persists. On Sat, Feb 23, 2019 at 3:28 PM martin1007 wrote:...

Automatic resizing has long been an issue and could definitely use some attention.

The formatting library in `handsontable` changes recently. Does something like this meet your needs? ``` rhandsontable(head(cars)) %>% hot_cols(format = "0.0", language = "de-DE") ```