/**
  * Preparar
  */
 protected function prepapar()
 {
     if (!$this->preparado) {
         try {
             parent::prepapar();
             // Gráfica Hogares Jefatura
             $graf_hog_jef = new GraficaPayWeb(self::ID_GRAF_HOG_JEF);
             $graf_hog_jef->definir_titulo('Hogares con jefatura...');
             $graf_hog_jef->agregar('Masculina', $this->viviendas['Hogares Jefatura masculina'], '#006AC8');
             $graf_hog_jef->agregar('Femenina', $this->viviendas['Hogares Jefatura femenina'], '#C80083');
             $this->graficas[] = $graf_hog_jef;
             // Gráfica Viviendas con...
             $graf_viv_con = new GraficaBarrasWeb(self::ID_GRAF_VIV_CON);
             $graf_viv_con->definir_titulo('Viviendas con...');
             $graf_viv_con->agregar('Electricidad', $this->viviendas['Viviendas con Electricidad'], '#FF8080');
             $graf_viv_con->agregar('Agua', $this->viviendas['Viviendas con Agua'], '#FF80C0');
             $graf_viv_con->agregar('Drenaje', $this->viviendas['Viviendas con Drenaje'], '#C080FF');
             $graf_viv_con->agregar('Televisión', $this->viviendas['Viviendas con Televisión'], '#80C0FF');
             $graf_viv_con->agregar('Automóvil', $this->viviendas['Viviendas con Automóvil'], '#59BFC3');
             $graf_viv_con->agregar('Computadora', $this->viviendas['Viviendas con Computadora'], '#59C38E');
             $graf_viv_con->agregar('Celular', $this->viviendas['Viviendas con Celular'], '#8EC359');
             $graf_viv_con->agregar('Internet', $this->viviendas['Viviendas con Internet'], '#C38E59');
             $graf_viv_con->definir_eje_horizontal('Porcentaje', 0, 100);
             $graf_viv_con->definir_post_nota(' %');
             $this->graficas[] = $graf_viv_con;
         } catch (EjeExceptionSinDatos $e) {
             $mensaje = new MensajeWeb();
             $mensaje->definir_mensaje_aviso('', $e->getMessage());
             $this->graficas[] = $mensaje;
         }
     }
 }
 /**
  * Preparar
  */
 protected function prepapar()
 {
     if (!$this->preparado) {
         try {
             parent::prepapar();
             $this->tabla = new TablaWeb(self::IDENTIFICADOR);
             $this->tabla->definir_estructura(array('indicador' => array('enca' => 'Indicador'), 'valor' => array('enca' => 'Valor', 'clase' => 'derecha')));
             $this->tabla->definir_panal(array(array('indicador' => 'Hogares', 'valor' => $this->formatear('Hogares')), array('indicador' => 'Hogares con jefatura masculina', 'valor' => $this->formatear('Hogares Jefatura masculina')), array('indicador' => 'Hogares con jefatura femenina', 'valor' => $this->formatear('Hogares Jefatura femenina')), array('indicador' => 'Viviendas con Electricidad', 'valor' => $this->formatear('Viviendas con Electricidad')), array('indicador' => 'Viviendas con Agua', 'valor' => $this->formatear('Viviendas con Agua')), array('indicador' => 'Viviendas con Drenaje', 'valor' => $this->formatear('Viviendas con Drenaje')), array('indicador' => 'Viviendas con Televisión', 'valor' => $this->formatear('Viviendas con Televisión')), array('indicador' => 'Viviendas con Automóvil', 'valor' => $this->formatear('Viviendas con Automóvil')), array('indicador' => 'Viviendas con Computadora', 'valor' => $this->formatear('Viviendas con Computadora')), array('indicador' => 'Viviendas con Celular', 'valor' => $this->formatear('Viviendas con Celular')), array('indicador' => 'Viviendas con Internet', 'valor' => $this->formatear('Viviendas con Internet'))));
         } catch (EjeExceptionSinDatos $e) {
             $this->tabla = new MensajeWeb();
             $this->tabla->definir_mensaje_aviso('', $e->getMessage());
         }
     }
 }