SetBackgroundGradient('lightsteelblue:0.8','lightsteelblue:0.3'); $graph->title->Set('Matrix with lines'); $graph->title->SetFont(FF_ARIAL,FS_BOLD,18); $graph->title->SetColor('white'); // Create two lines to add as markers $l1 = new PlotLine(VERTICAL, 5, 'lightgray:1.5', 4); $l2 = new PlotLine(HORIZONTAL, 3, 'lightgray:1.5', 4); // Create one matrix plot $mp = new MatrixPlot($data,1); $mp->SetModuleSize(13,15); $mp->SetCenterPos(0.35,0.6); $mp->colormap->SetNullColor('gray'); // Add lines $mp->AddLine($l1); $mp->AddLine($l2); // this could also be done as // $mp->AddLine(array($l1,$l2)); // Setup column lablels $mp->collabel->Set($collabels); $mp->collabel->SetSide('top'); $mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,8); $mp->collabel->SetFontColor('lightgray'); // Setup row lablels $mp->rowlabel->Set($rowlabels); $mp->rowlabel->SetSide('right'); $mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,8); $mp->rowlabel->SetFontColor('lightgray'); // Move the legend more to the right $mp->legend->SetMargin(90); $mp->legend->SetColor('white'); $mp->legend->SetFont(FF_VERDANA,FS_BOLD,10); $graph->Add($mp); $graph->Stroke(); ?>