Добрый день! Почему не видны все данные(бары) на графике при использовании виджета HighCharts?
моя вьюшка
echo HighCharts::widget([
'clientOptions' => [
'chart' => [
'height' => '700',
'type' => 'column'
],
'title' => [
'text' => 'График платежей'
],
'xAxis' => [
'categories' => $columnTitles,
],
'yAxis' => [
'min' => 1,
'type' => "logarithmic",
'title' => [
'text' => 'MDL'
]
],
'series' => $chartData
,
'plotOptions' => [
'column' => [
'stacking' => 'normal',
'dataLabels' => [
'allowOverlap' => true,
'enabled' => true,
'color' => 'white'
]
]
]
]
]);