How can i change label from percentage to value - code - PieChart::create(array(
"title" => "Diversification Analysis",
"dataStore" => $this->dataStore('myTestDataStore'),
"columns" => array(
"investortype" => array(
"label" => "Investor Type"
),
"count" => array(
"label" => "Total",
"type" => "number"
)
),
"label" => array(
"show" => true, // Whether to show the label
"use" => "value", // i want to display value insted of percentage but it wont work
)
));