Set($data); // Setup fonts $table->SetFont(FF_TIMES,FS_NORMAL,11); $table->SetColFont(0,FF_ARIAL,FS_NORMAL,11); $table->SetRowFont(0,FF_ARIAL,FS_NORMAL,11); $table->SetRowFont(4,FF_TIMES,FS_BOLD,14); // Turn off the grid $table->SetGrid(0); // Setup color $table->SetRowFillColor(0,'lightgray@0.5'); $table->SetRowFillColor(4,'lightgray@0.5'); $table->SetColFillColor(0,'lightgray@0.5'); $table->SetFillColor(0,0,4,0,'lightgray@0.5'); // Set default minimum column width $table->SetMinColWidth(45); // Set default table alignment $table->SetAlign('right'); // Add table to the graph $graph->Add($table); // and send it back to the client $graph->Stroke(); ?>