Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 6144 Rev 6146
Línea 78... Línea 78...
78
    function barChart($label, $values, $title, $filename)
78
    function barChart($label, $values, $title, $filename)
79
    {
79
    {
80
        $graph = new Graph\Graph(400, 240);
80
        $graph = new Graph\Graph(400, 240);
81
        $graph->clearTheme();
81
        $graph->clearTheme();
82
        $graph->SetShadow();
82
        $graph->SetShadow();
83
 
83
        
84
        $graph->yaxis->scale->SetGrace(5);
-
 
85
        $graph->xaxis->SetTickLabels($label);
84
        $graph->xaxis->SetTickLabels($label);
Línea 86... Línea 85...
86
 
85
 
87
        $bplot = new Plot\BarPlot($values);
86
        $bplot = new Plot\BarPlot($values);
88
        $bplot->SetFillColor('orange');
87
        $bplot->SetFillColor('orange');