title->Set('Adding a background image'); $graph->title->SetFont(FF_ARIAL,FS_BOLD,14); $graph->subtitle->Set('Alphablending = 0.2'); // Add a stretched background image $graph->SetBackgroundImage('ironrod.jpg',BGIMG_FILLFRAME); $graph->SetBackgroundImageMix(50); $mp = new MatrixPlot($data,1); $mp->SetSize(0.65); $mp->SetCenterPos(0.5,0.5); $mp->SetLegendLayout(1); $mp->SetAlpha(0.2); $graph->Add($mp); $graph->Stroke(); ?>