Skip to content
Advertisement

position charts on html page

Im building a basic dashboard and using google charts to do so. I have successfully embedded my gauge charts on the webpage. I am now trying to position them.

I have read that this needs to be done using css positioning.

My question is if this is the solution , how can I use this within my code.

Im trying to split, so I will have 3 gauges on top and 2 underneath..

I have tried using <div style = "position:relative; left:?; top:?px </div> in differant positions but I cant get it to work..

JavaScript

Advertisement

Answer

Just style your chart_div with CSS using position: absolute; and then position it using the top and left properties. For example:

With positioning:

JavaScript
JavaScript

Without positioning:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement