diff --git a/resources/js/Global/plugins/chart/apexhart/type/bar.js b/resources/js/Global/plugins/chart/apexhart/type/bar.js index 97d66b8..aba6749 100644 --- a/resources/js/Global/plugins/chart/apexhart/type/bar.js +++ b/resources/js/Global/plugins/chart/apexhart/type/bar.js @@ -64,7 +64,7 @@ export default class extends chart { setDaily() { this.options.series[0].data = this.responseChart.map(x => x.count); - this.options.xaxis.categories = this.responseChart.map(x => x.date); + this.options.xaxis.categories = this.responseChart.map(x => x.persian_date); }