diff --git a/docs/graficos/parcelas.html b/docs/graficos/parcelas.html index 67828c5..de01ffd 100644 --- a/docs/graficos/parcelas.html +++ b/docs/graficos/parcelas.html @@ -1,6 +1,7 @@ + diff --git a/docs/graficos/parcelas.js b/docs/graficos/parcelas.js index a53ae0d..8898752 100644 --- a/docs/graficos/parcelas.js +++ b/docs/graficos/parcelas.js @@ -57,6 +57,7 @@ function draw() { //var nbr = String.prototype.toUpperCase(nombres[n]); if (dimr[n] != -1 || !compara(mc,color(colores[n]))) fill(0); else fill(0); + noStroke(); textStyle(BOLD); text(nombres[n], x[n], y[n]-10); @@ -65,19 +66,23 @@ function draw() { text("Plan inicial: " + dim[n]+" Has", x[n], y[n]+5); } else { + noStroke(); if (dimr[n] != -1) text("Parcela media: " + dimr[n]+" Has", x[n], y[n]+5); else text("(Sin datos)", x[n], y[n]+5); } } // Titulo + fill(255,200); + stroke(155); + rect(605, 375, 170, 120); fill(0); textStyle(BOLD); - textSize(14); - text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 600, 350, 150, 80); + textSize(12); + text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 620, 390, 150, 80); textStyle(NORMAL); - textSize(14); - text("Datos reales frente a datos según Plan de Colonización", 600, 430, 150, 80); + textSize(11); + text("Interacción con el ratón: Datos reales (verde) frente a datos según Plan de Colonización (blanco)", 620, 440, 150, 80); }