Bernhard Klingenberg
Bernhard Klingenberg
Hi, with `{shinyMobile}` version 1.0.0.90, I now get this behavior on my phone:  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:  
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:  And if you want to have "nice" ticks, using `tickAmount` works: ```r df % ax_xaxis(type="numeric", tickAmount=2) ```  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...
updateSliderInput only updates graphically, but not the actual value while evaluating observeEvent()
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....