revealjs refresh browser between slides #12207
-
DescriptionHello and after refreshing my browser I tried various yaml options such as
not sure how to fix it |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? The goal is to make it as easy as possible for us to recreate your problem so that we can fix it: please help us help you! Thanks. You can share a self-contained "working" (reproducible) Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four If you have multiple files (and if it is absolutely required to have multiple files), please share as a Git repository.
Additionally and if not already given, please share the output of |
Beta Was this translation helpful? Give feedback.
-
will do,thank you! |
Beta Was this translation helpful? Give feedback.
-
What you are encountering is probably loading conflict with Revealjs feature, and what echarts4r is doing. By default, revealjs will not load all the slides content at once. It will only do it for a subset of the next slides. You can tweak that by changing Otherwise, maybe echarts4r as an event that can be trigger to resize, reload or recompute and you can use some JS to trigger it the same way refresh is doing, when you enter a slide. See about If you can find how echarts works to resize / recompute, then it can be adapted. So I don't think this is quarto issue, more a revealjs + echarts problem, and maybe with tab also as I see you are using them. A lot of JS component to synchronize which is not straightfoward. |
Beta Was this translation helpful? Give feedback.
-
you were right!!! that is great I set view-distance to 10 and now it is working smoothly. THANK YOU ++ |
Beta Was this translation helpful? Give feedback.
you were right!!! that is great
I found similar issue here for ggplotly
#6856
I set view-distance to 10 and now it is working smoothly.
THANK YOU ++