in my laravel application, i use this line to render a chart.
<div id="chart-container">FusionCharts will render here</div>
I need to put two charts or maybe more in a row, but it's not working specially with this chart generator line.
i tried :
<div class="col-md-6" id="chart-container">FusionCharts will render here</div>
<div class="col-md-6" id="chart-container">FusionCharts will render here</div>
i tried :
<div class="col-md-12>
<div class="col-md-6>
<div id="chart-container">FusionCharts will render here</div>
</div>
<div class="col-md-6>
<div id="chart-container2">FusionCharts will render here</div>
</div>
</div>