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

Grafico de navegadores web

Hola, les comparto mi codigo.

<h1>Evolucion de navegadores Web</h1>

<canvas width="600" height="400"></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="15px Georgia";
        pincel.fillStyle="black";
        pincel.fillText(texto, x, y);    
    }

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

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


    function dibujarBarra(x, y, serie, colores, texto) {


        escribirTexto(x,y-15,texto);

        var porcentajeTotal = 0;

         for(var posicion = 0; posicion < serie.length; posicion++){

                var porcentaje = serie[posicion];
                dibujarRectangulo(x,y + porcentajeTotal, ancho, porcentaje, colores[posicion]);


                porcentajeTotal =  porcentaje + porcentajeTotal;

            }
        }



//azul chrome, verde firefox, amarillo explorer, rojo safari, gris otros

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


    dibujarBarra(x, y, serie2009, colores, "2009");
    dibujarBarra(x+120, y, serie2019, colores, "2019");




</script>
1 respuesta

Impresionante. Todo perfecto y muy prolijo. A seguir!