vue-world-map
vue-world-map copied to clipboard
Options setted through setOptions() will be removed when toVue() is executed
Options added using the method
setOptions($options)
are removed when ->toVue() is executed
dump($this->chart->donutChart()
->setTitle('Top 3 scorers of the team.')
->setSubtitle('Season 2021.')
->addData([20, 24, 30])
->setLabels(['Player 7', 'Player 10', 'Player 9'])
->setOptions([
'legend' => [
'show' => false,
'position' => 'bottom'
]
])
->toVue());
exit();