ajax_statistics.blade.php 432 B

123456789101112131415
  1. <div id="line_box"></div>
  2. <script type="text/javascript">
  3. FusionCharts.ready(function(){
  4. var revenueChart = new FusionCharts({
  5. "type": "msline",
  6. "height":"250px",
  7. "renderAt": "line_box",
  8. "width":"99%",
  9. "dataFormat": "xml",
  10. "showLegend":"1",
  11. "dataSource": '{!! $line_xml !!}',
  12. });
  13. revenueChart.render();
  14. });
  15. </script>