0

I have the following iframe which show a chart as follow:-

<iframe id="customchart" src="https://apps.powerapps.com/play/*********" width="100%" height="500px"></iframe>

enter image description here

now i want to rotate the iframe so the chart looks like this:-

enter image description here

is this possible, using pure JavaScript or CSS??

Thanks

John John
  • 1
  • 72
  • 238
  • 501

1 Answers1

0

Does this work for you?

Note: This will not work because https://apps.powerapps.com/play/********* is not there but if you put in a other site url it will work.

    #customchart {

        transform: rotate(90deg);
      }
<iframe id="customchart" src="https://apps.powerapps.com/play/*********" width="100%" height="500px"></iframe>