Advertisement
ADL_Rodrigo_Silva

Untitled

Feb 18th, 2022
169
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 dataPoints = [];
  6.  
  7.     var options = {
  8.         animationEnabled: true,
  9.         theme: "light2",
  10.         title: {
  11.             text: "Daily Sales Data"
  12.         },
  13.         axisX: {
  14.             valueFormatString: "DD MMM YYYY",
  15.         },
  16.         axisY: {
  17.             title: "USD",
  18.             titleFontSize: 24,
  19.         },
  20.         data: [{
  21.             type: "spline", dataPoints: dataPoints
  22.         }]
  23.     };
  24.     $.ajax({
  25.         type: "GET",
  26.         url: "https://mindicador.cl/api/dolar",
  27.         dataType: "json",
  28.         success: function (datos) {
  29.             let datosApi = datos.serie;
  30.             for (var i = 0; i < datosApi.length; i++) {
  31.                 dataPoints.push({
  32.                     x: new Date(datosApi[i].fecha), y: datosApi[i].valor,
  33.                 })
  34.             }
  35.             $("#chartContainer").CanvasJSChart(options);
  36.         },
  37. error: function (error) {
  38.             console.log(error)
  39.         }
  40.     });
  41. });
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement