diff --git a/resources/js/Global/plugins/chart/apexhart/type/bar.js b/resources/js/Global/plugins/chart/apexhart/type/bar.js index 1e8be62..97d66b8 100644 --- a/resources/js/Global/plugins/chart/apexhart/type/bar.js +++ b/resources/js/Global/plugins/chart/apexhart/type/bar.js @@ -41,10 +41,13 @@ export default class extends chart { setOptions() { switch (this.type) { case 'weekly': + case 'cost-weekly': return this.setWeekly(); case 'monthly': + case 'cost-monthly': return this.setMonthly(); case 'daily': + case 'cost-daily': return this.setDaily(); } }