Closed mablebee closed 5 years ago
Found the solution - the modules/treemap module needed to be loaded additionally
print Highcharts::widget([
'scripts' => [
'modules/exporting',
**'modules/treemap',**
'themes/grid-light',
],
'options' => [
'chart' => [
'renderTo' => 'treeview-container',
],
'series' => [[
'type' => 'treemap',
I upgraded with composer to most current version (including highcharts) but it seems that treemaps are not supported.
In the browser console I receive error #17 which seems to indicate, that there is no such series type (I have defined 'type' => 'treemap'
Can you help me find the issue to get treemaps working with yii2? Thx, Martin