In line 4518 of phplot.php i've put
$i = 0;
$which_lab = null;
foreach($argv as $value) {
if($i == 0) {
$i++;
$which_lab.= number_format($value, 2, ',','.');
}
}
Get two integer numbers from a query and put then like decimal. Example: 214566 to 214.566
SQL Query
select to_char(numberOne,'FM999G999G999') from tableOne
Putting this code i get a blank chart
Changing the query for a simple result, the chart becomes visible SQL Query
select numberOne from tableOne
Remember, the numbers are on "Integer" type