SetScale("textint"); $graph->SetShadow(); $graph->SetMargin(40, 20, 40, 40); $graph->title->Set('Chamadas Abandonadas por Tempo de Espera'); $graph->xaxis->SetTickLabels($arLabel); $graph->legend->Pos(0.2, 0.90); $graph->legend->SetColumns(1); $graph->xaxis->title->Set($labelX); $graph->yaxis->title->Set('Chamadas'); $barPlot1 = new BarPlot($data); $barPlot1->SetLegend("Originadas(ORG/TMO)"); $barPlot1->SetFillColor("springgreen3"); $barPlot1->value->Show(); $barPlot1->value->SetFormat("%d"); $barPlot1->value->SetColor("springgreen3"); $graph->Stroke(); exit;