Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. $grafico=array();
  2. $grafico['title']['text']="Gráfica de demostración ";
  3. $grafico['title']['subtext']="Libreria echarts";
  4.  
  5. $grafico['tooltip']['trigger']= "axis";
  6. $grafico['tooltip']['axisPointer']['type']= "shadow";
  7.  
  8. $grafico['xAxis']['data']=array("Primero","Segundo","Tercero");
  9. $grafico['yAxis']['type']="value";
  10. //Leyenda
  11. $grafico['legend']['orient']="horizontal";
  12. $grafico['legend']['right']=35;
  13.  
  14. //Asignacion de datos
  15. $grafico['series']=$datos;
  16.  
  17.  
  18. $json_grafico=json_encode($grafico);
  19.  
  20. ?>
  21. @push('javascript')
  22. <script type="text/javascript">
  23.  
  24. $(function () {
  25. var myChart = echarts.init(document.getElementById('grafica_echarts'), 'light');
  26. var option = {!! $json_grafico !!};
  27. myChart.setOption(option);
  28. });
  29.  
  30. </script>
  31. @endpush
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement