setPlotArea(50, 25, 450, 200); $plotAreaObj->setGridColor(0xc0c0c0, 0xc0c0c0); # Add a title to the chart $c->addTitle("Computer Vision Test Scores"); # Set the labels on the x axis and the font to Arial Bold $labelsObj = $c->xAxis->setLabels($labels); $labelsObj->setFontStyle("arialbd.ttf"); # Set the font for the y axis labels to Arial Bold $c->yAxis->setLabelStyle("arialbd.ttf"); # Add a Box Whisker layer using light blue 0x9999ff as the fill color and blue (0xcc) # as the line color. Set the line width to 2 pixels $boxWhiskerLayerObj = $c->addBoxWhiskerLayer($Q3Data, $Q1Data, $Q4Data, $Q0Data, $Q2Data, 0x9999ff, 0x0000cc); $boxWhiskerLayerObj->setLineWidth(2); # output the chart header("Content-type: image/png"); print($c->makeChart2(PNG)); ?>