pacbard / gChartPhp

Apache License 2.0
88 stars 45 forks source link

Concentric Pie Charts need multiple labels #5

Open jonwinstanley opened 12 years ago

jonwinstanley commented 12 years ago

I think concentric pie charts need the ability to add multiple sets of labels.

I fixed myself by simply adding the following to the gConcentricPieChart class

public function addLabel($labels)
{
    $this->setProperty('chl', urlencode($this->encodeData($this->getApplicableLabels($labels),"|")), true);
}