Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

Ejercicio resuelto dibujarBarra

<canvas width="600" height="400"></canvas>

<script>
  function dibujarRectangulo(x, y, base, altura, color) {
    var pantalla = document.querySelector("canvas");
    var pincel = pantalla.getContext("2d");

    //console.log(typeof color);

    pincel.fillStyle = color;
    pincel.fillRect(x, y, base, altura);
    pincel.strokeStyle = "black";
    pincel.strokeRect(x, y, base, altura);
  }

  function escribirTexto(x, y, texto) {
    var pantalla = document.querySelector("canvas");
    var pincel = pantalla.getContext("2d");

    pincel.font = "15px Georgia";
    pincel.fillStyle = "black";
    pincel.fillText(texto, x, y);
  }

  var serie2009 = [6, 47, 41, 3, 3];
  var serie2019 = [81, 9, 3, 3, 4];
  var colores = ["blue", "green", "yellow", "red", "gray"];

  function dibujarBarra(x, y, serie, colores, texto) {
    var i = 0;
    var base = 20;
    var altura = 0;
    escribirTexto(x - 5, y - 10, texto);
    while (i < serie.length) {
      dibujarRectangulo(x, y + altura, base, serie[i], colores[i]);
      var altura = altura + serie[i];
      i = i + 1;
    }
  }

  dibujarBarra(50, 50, serie2009, colores, "2009");
  dibujarBarra(150, 50, serie2019, colores, "2019");
</script>
1 respuesta

me podrian explicar que significa el [i] ?, no entiendo porque se añade a las variables serie y color.