Browse Source

remove line from x axis in graph chart

Mohidul Islam 5 năm trước cách đây
mục cha
commit
2202287292
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      analytics/templates/charts.html

+ 10 - 0
analytics/templates/charts.html

@@ -72,6 +72,11 @@
                 },
                 options: {
                     scales: {
+                        xAxes: [{
+                            gridLines: {
+                                drawOnChartArea:false
+                            }
+                        }],
                         yAxes: [{
                             ticks: {
                                 beginAtZero: true
@@ -100,6 +105,11 @@
                             ticks: {
                                 beginAtZero: true
                             }
+                        }],
+                        xAxes: [{
+                            gridLines: {
+                                drawOnChartArea:false
+                            }
                         }]
                     }
                 }