<!DOCTYPE html>
<meta charset="UTF-8">
<h1>Evolución de uso de navegadores o exploradores en los últimos 10 años</h1>
<canvas width="500" height="200"></canvas>
<script>
function dibujarRectangulo(x, y, base, altura, color) {
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
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="25px Georgia";
pincel.fillStyle="black";
pincel.fillText(texto, x, y);
}
function dibujarBarra(x, y, serie, colores, texto) {
escribirTexto(x, y - 10, texto);
var sumaAltura = 0;
for (var i = 0; i < serie.length; i++) {
var altura = serie[i];
dibujarRectangulo(x, y + sumaAltura, 50, altura, colores[i]);
sumaAltura = sumaAltura + altura;
}
}
var colores = ["blue","green","yellow", "red","gray"];
var serie2009 = [6,47,41,3,3];
var serie2019 = [81,9,3,3,4];
dibujarBarra(50, 50, serie2009, colores, "2009");
dibujarBarra(150, 50, serie2019, colores, "2019");
</script>
<h2>Leyendas del gráfico (Chrome es azul, Firefox verde, Internet Explorer amarillo, Safari rojo y otros plomo)</h2>
<p>Encontramos algunos datos relevantes en internet sobre la evolución de uso de navegadores o exploradores en los últimos 10 años, el resultado fue el siguiente.
En 2009: 6% Chrome, 47% Firefox, 41% Internet Explorer/Edge*, 3% Safari, 3% Otros.
En 2019: 81% Chrome, 9% Firefox, 3% Internet Explorer/Edge*, 3% Safari, 4% Otros.
*Para simplificar nuestro gráfico sumamos los valores de Internet Explorer e IE Edge, los dos navegadores son de la misma empresa, Microsoft.
Como podrán ver en los datos la relevancia que ganó el navegador de Google (Chrome), teniendo una supremacía del 81% en 2019.</p>
</script>