Hi, I am try to create a combo chart (bar & line), but it still remain bar only, may I know what I have did wrong on this code?
protected function fields()
{
return [
Text::create("month"),
Currency::create("ARL")
->MYR()
->symbol()
->decimals(0)
->chartType("line"),
Currency::create("Target")
->MYR()
->symbol()
->decimals(0)
->chartType("line"),
Currency::create("Actual")
->MYR()
->symbol()
->decimals(0)
->style(function($row){
return "opacity:0.5;";
})
];
}