Hi,
i'm using Dashbaord and D3 Piechart. Right now, when I mousse over the pie, it shows the percentage in the tooltip. I know there's an option to show the total amount instead...
I tried this but it's not working :
protected function onInit()
{
$this
->colorScheme(ColorList::nature())
->height("500")
->settings([
"tooltip"=>array(
"use"=>"value",
"prefix"=>"$"
)
]);
}
Thank you!