Im trying to build a very easy table:
Sex %
M 40
F 60
Using php to encode an array but no graph is drawn assuming that the input data is wrong. Can you tell where is the problem?
$table = array();
$table['cols'] = array(
array('label' => 'Sesso', 'type' => 'string'),
array('label' => 'Quantita', 'type' => 'number'));
$rows = array();
$temp = array();
$temp[] = array('v' => 'M');
$temp[] = array('v' => 60);
$rows[] = array('c' => $temp);
$temp = array();
$temp[] = array('v' => 'F');
$temp[] = array('v' => 40);
$rows[] = array('c' => $temp);
$table['rows'] = $rows;
$jsonTable = json_encode($table);
