Bernhard Klingenberg

Results 16 comments of Bernhard Klingenberg

Hi, with `{shinyMobile}` version 1.0.0.90, I now get this behavior on my phone: ![image](https://user-images.githubusercontent.com/4784206/107818305-68010380-6d45-11eb-85d4-90c6286286bb.png) when pressing the + symbol next to 46 in the stepper. The only option I use...

Sorry, I meant to say I included ``` options = list( dark = TRUE, pullToRefresh = FALSE, touch = list( tapHold = TRUE, tapHoldDelay = 750, iosTouchRipple = FALSE )...

I just relaunched without specifying any options under `f7Page`, and I still get the behavior shown in the latest screenshot. This might just be a function of my smartphone. Using...

I tried in a codepen that had **version 3.4.1** of apexchart, and it did give the expected result: ![image](https://user-images.githubusercontent.com/4784206/108580864-7463fe00-72fb-11eb-8be5-e58a714e18f0.png) ![image](https://user-images.githubusercontent.com/4784206/108580978-fe13cb80-72fb-11eb-8689-3b64794b0e06.png)

Sorry if this is not the right lead (I understand very little about these things), but when you change to **version 3.4.1** in your codepen (at least this is what...

I believe the issue was fixed on Apex's gihub a few weeks ago. Any chance this will be rolled over soon, so that code like this gives correct results: ```r...

Thanks, seems to work just fine for the toy example: ![image](https://user-images.githubusercontent.com/4784206/110994093-43994680-8346-11eb-840b-13e71ebbfee6.png) And if you want to have "nice" ticks, using `tickAmount` works: ```r df % ax_xaxis(type="numeric", tickAmount=2) ``` ![image](https://user-images.githubusercontent.com/4784206/110994857-74c64680-8347-11eb-9255-9772573477f6.png) Only...

...and the initial example now also shows correct x-axis labels: ```r x

There is still a small issue, though, if one wants to set a custom x-axis range: It has to do with the precision of the tick labels. Out of the...

Good to know! One workaround is to define a separate `reactiveVal` that keeps track of the slider input and resets when reset is pressed, although this seems a bit wasteful....