Problem:
When using Google Charts, a single chart is shown despite adding multiple charts.
Solution:
The <div> element is a non-void(non-empty) element and should not be self closed.
Single graph shows:
<div id="month_type" class="chg_chart"/>
<div id="month_cat" class="chg_chart"/>
<div id="month_region" class="chg_chart"/>
Three graphs show:
<div id="month_type" class="chg_chart"></div>
<div id="month_cat" class="chg_chart"></div>
<div id="month_region" class="chg_chart"></div>
References:
No comments:
Post a Comment