I can't get the full-screen icon from tableau server or tableau public to appear.
In fact, I utilised React for my front-end and the tableau-react plugin to incorporate tableau URLs from the server or public.
Here's a look at my code.
const options = {
hideTabs: true,
width: '100%',
height: 1000,
allowFullScreen: true
};
const urlTableau = 'http://public.tableau.com/views/CottonwoodPassAreaMap/WayPointsbetweenCottonwoodpassandCrabtreeMeadows?:embed=y&:display_count=yes';
this.setState({
iframeTableau: <TableauReport
url={urlTableau}
options={options}
/>
});
Is there something wrong with my code?
Thank you very much.