php - Lavacharts JS error while creating GaugeChart
one text
Controller function
$lava = new Lavacharts;
$temps = Lava::DataTable();
$temps->addStringColumn('Type')
->addNumberColumn('Value')
->addRow(['Chart', 11]);
Lava::GaugeChart('Temps', $temps, [
'width' => 200,
'purpleFrom' => 1,
'purpleTo' => 15,
'blueFrom' => 16,
'blueTo' => 18.4,
'greenFrom' => 18.5,
'greenTo' => 25,
'yellowFrom' => 26,
'yellowTo' => 30,
'orangeFrom' => 31,
'orangeTo' => 40,
'redFrom' => 41,
'redTo' => 100,
'majorTicks' => [
'Low',
'High'
]
]);
Blade
@gaugechart('Temps', 'temps_div')
Error
Please help. I'm stuck here. I tried other options also mentioned here Lavacharts
Source