Advertisement
ADL_Rodrigo_Silva

Untitled

Feb 18th, 2022
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // JQUERY
  2.  
  3. $(document).ready(function () {
  4.    
  5.     var options = {
  6.        
  7.         title: {
  8.             text: "Gráfico de columnas con jQuery CanvasJS",
  9.         },
  10.         axisX: {
  11.             title: "Frutas Tropicales",
  12.             titleFontSize: 12
  13.         },
  14.         axisY: {
  15.             title: "Consumo Kg/persona/año",
  16.             titleFontSize: 12
  17.         },
  18.         data: [
  19.             {
  20.                 type: "column", dataPoints: [
  21.                     { label: "papaya", y: 23 },
  22.                     { label: "naranja", y: 15 },
  23.                     { label: "platano", y: 25 },
  24.                     { label: "mango", y: 30 },
  25.                     { label: "guayaba", y: 20 },
  26.                 ],
  27.             },
  28.         ],
  29.     };
  30.  
  31.     $("#chartContainer").CanvasJSChart(options);
  32.  
  33. });
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement