소스 검색

remove line from x axis in graph chart

Mohidul Islam 5 년 전
부모
커밋
2202287292
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  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
+                            }
                         }]
                     }
                 }