PieGraph::DrawLegendEntry PHP Method

DrawLegendEntry() protected method

Return box for legend
protected DrawLegendEntry ( $set, $x, $y, $w, $h )
    protected function DrawLegendEntry($set, $x, $y, $w, $h)
    {
        if (!array_key_exists($set, $this->slice_styles)) {
            return '';
        }
        $bar = array('x' => $x, 'y' => $y, 'width' => $w, 'height' => $h);
        return $this->Element('rect', $bar, $this->slice_styles[$set]);
    }