Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 6158 | Rev 6161 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6158 Rev 6160
Línea 79... Línea 79...
79
    {
79
    {
80
        $graph = new Graph\Graph(400, 240, 'auto');
80
        $graph = new Graph\Graph(400, 240, 'auto');
81
        $graph->SetScale('textint');
81
        $graph->SetScale('textint');
82
        $graph->clearTheme();
82
        $graph->clearTheme();
83
        $graph->SetShadow();
83
        $graph->SetShadow();
-
 
84
        $graph->Set90AndMargin(10, 10, 10, 10);
Línea 84... Línea 85...
84
 
85
 
85
        $graph->yaxis->scale->SetGrace(1);
86
        $graph->yaxis->scale->SetGrace(1);
Línea 86... Línea 87...
86
        $graph->xaxis->SetTickLabels($label);
87
        $graph->xaxis->SetTickLabels($label);
87
 
88
 
88
        $bplot = new Plot\BarPlot($values);
89
        $bplot = new Plot\BarPlot($values);
89
        $bplot->SetFillColor('orange');
90
        $bplot->SetFillColor('orange');
90
        $bplot->SetWidth(0.5);
-
 
Línea 91... Línea 91...
91
        $bplot->SetShadow();
91
        $bplot->SetWidth(0.5);
92
        $bplot->value->SetAngle(45);
92
        $bplot->SetShadow();
Línea 93... Línea 93...
93
 
93