Explorar el Código

remove line from x axis in graph chart

Mohidul Islam hace 5 años
padre
commit
2202287292
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  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
+                            }
                         }]
                     }
                 }