- pie chart labels do not support HTML, only plain text (at least in this version of OFC)

SVN:trunk[302]
This commit is contained in:
Denis Flaven
2010-02-19 14:45:06 +00:00
parent f1226ca65e
commit ee2c9d6c37

View File

@@ -552,7 +552,7 @@ class DisplayBlock
$aGroupBy = array();
while($oObj = $this->m_oSet->Fetch())
{
$sValue = $oObj->GetAsHtml($sGroupByField);
$sValue = $oObj->Get($sGroupByField);
$aGroupBy[$sValue] = isset($aGroupBy[$sValue]) ? $aGroupBy[$sValue]+1 : 1;
}
$sFilter = urlencode($this->m_oFilter->serialize());