/** * 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' => 'Total Actividades Económicas', 'valor' => $this->formatear('Total Actividades Económicas')), array('indicador' => $this->formatear('Primer actividad nombre'), 'valor' => $this->formatear('Primer actividad porcentaje')), array('indicador' => $this->formatear('Segunda actividad nombre'), 'valor' => $this->formatear('Segunda actividad porcentaje')), array('indicador' => $this->formatear('Tercera actividad nombre'), 'valor' => $this->formatear('Tercera actividad porcentaje')), array('indicador' => $this->formatear('Cuarta actividad nombre'), 'valor' => $this->formatear('Cuarta actividad porcentaje')), array('indicador' => $this->formatear('Quinta actividad nombre'), 'valor' => $this->formatear('Quinta actividad porcentaje')))); } catch (EjeExceptionSinDatos $e) { $this->tabla = new MensajeWeb(); $this->tabla->definir_mensaje_aviso('', $e->getMessage()); } } }
/** * Preparar */ protected function prepapar() { if (!$this->preparado) { try { parent::prepapar(); // Grafica Unidades Economicas $this->grafica = new GraficaBarrasWeb(self::ID_GRAF_UNI_ECO); $this->grafica->definir_titulo("{$this->unidades_economicas['Total Actividades Económicas']} Unidades Económicas"); $this->grafica->agregar('1° ' . $this->unidades_economicas['Primer actividad nombre'], $this->unidades_economicas['Primer actividad porcentaje'], '#80C0FF'); $this->grafica->agregar('2° ' . $this->unidades_economicas['Segunda actividad nombre'], $this->unidades_economicas['Segunda actividad porcentaje'], '#59BFC3'); $this->grafica->agregar('3° ' . $this->unidades_economicas['Tercera actividad nombre'], $this->unidades_economicas['Tercera actividad porcentaje'], '#59C38E'); $this->grafica->agregar('4° ' . $this->unidades_economicas['Cuarta actividad nombre'], $this->unidades_economicas['Cuarta actividad porcentaje'], '#8EC359'); $this->grafica->agregar('5° ' . $this->unidades_economicas['Quinta actividad nombre'], $this->unidades_economicas['Quinta actividad porcentaje'], '#C38E59'); $this->grafica->definir_eje_horizontal('Porcentaje', 0); $this->grafica->definir_post_nota(' %'); } catch (EjeExceptionSinDatos $e) { $this->grafica = new MensajeWeb(); $this->grafica->definir_mensaje_aviso('', $e->getMessage()); } } }