-
1. Re: Embed code not allowing me to scroll on my site (Tableau Public)
Chris McClellanFeb 20, 2017 5:48 PM (in response to robert.patrize)
Hi Robert, I don't see the problem BUT .... if you want to scroll down the page your mouse pointer has to be on the page, not on the Tableau embedded part. If your mouse is on the Tableau part, Tableau is taking the mouse actions thinking you are scrolling on the graph (which you can't do on the bar graph, but you can do on the map).
Hmm .... I loaded the page again and now I can't scroll at all .. very strange
-
2. Re: Embed code not allowing me to scroll on my site (Tableau Public)
Trần Ngọc Sơn Feb 20, 2017 6:04 PM (in response to Chris McClellan)I don't think issue by Tableau. You can copy and paste Share Code in Tableau Public without change the code web.
In my opinion, it might error code Web animation. -
3. Re: Embed code not allowing me to scroll on my site (Tableau Public)
Tom WFeb 20, 2017 6:41 PM (in response to robert.patrize)
Take a look at the developer console in Chrome, you've got a bunch of javascript errors which have nothing to do with Tableau.
My guess is it's something to do with the javascript which 'zooms' in on the header when you are at the top of the page.
-
4. Re: Embed code not allowing me to scroll on my site (Tableau Public)
robert.patrize Feb 21, 2017 9:51 AM (in response to robert.patrize)2 of 2 people found this helpfulAfter many hours of researching, I found the issue is caused by the overflow: hidden CSS property generated by the embedded code. By adding this custom CSS I was able to fix the scrolling issue. I hope this helps any other person in need.
.tableauPlaceholder {
overflow: visible !important;
}
html {
overflow-y: auto !important;
}
Thank you all for your assistance.
-Robert