02-01-2008, 05:06 AM
|
#18 (permalink)
|
|
The Visitor
Join Date: Feb 2008
Posts: 1
Thanks: 1
|
Excellent script, thank you so much for creating it. It is extremely simple to understand and very expandable.
If anyone is having trouble trying to switch encoding on the chart data, there is a small bug that needs correction in the ./GoogleChart.php file. Function setDataEncoding is missing a "m_" before "szDataEnocding." An example of the fix is below.
Code:
public function setDataEncoding($szEncoding = self::SIMPLE_ENCODING)
{
$this->m_szDataEncoding = $szEncoding;
return $this;
}
|
|
|
|