We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce43d0b commit cd56963Copy full SHA for cd56963
resources/js/multiColumnChart.js
@@ -14,6 +14,7 @@ const multiColumnChart = () => {
14
this.chart.destroy()
15
}
16
17
+ const title = component.get('columnChartModel.title')
18
const stacked = component.get('columnChartModel.isStacked');
19
const animated = component.get('columnChartModel.animated');
20
const onColumnClickEventName = component.get('columnChartModel.onColumnClickEventName')
@@ -81,7 +82,7 @@ const multiColumnChart = () => {
81
82
83
yaxis: {
84
title: {
- text: component.get('columnChartModel.title'),
85
+ text: title,
86
87
},
88
0 commit comments