sah-comp / ksm

Application for lending, selling and maintaining forklifts.
0 stars 0 forks source link

Chartjs won't show labels on the x- and y axis #6

Closed sah-comp closed 3 years ago

sah-comp commented 4 years ago

Using version 2 of ChartJS. Although defined in options I can not see the labels on the x- and y axis:

https://github.com/sah-comp/ksm/blob/f241de693b90da42233a6c1c8d696bdbdb341c5f/app/Controller/Article.php#L53

'scales' => [
    'xAxes' => [
        'display' => true,
        'scaleLabel' => [
            'display' => true,
            'labelString' => I18n::__('article_chart_xaxis_label')
        ]
    ],
    'yAxes' => [
        'display' => true,
        'scaleLabel' => [
            'display' => true,
            'labelString' => I18n::__('article_chart_yaxis_label')
        ]
    ]
]