我使用
AngularCharts这是Chart.js的AgnularJS包装器.我想从我的图表中删除所有网格线,因此只有实际的折线图.但网格没有被删除.
调节器
@H_403_13@$scope.labelsx2 = [" "," "," Time ago "," "]; $scope.seriesx2 = [' ']; $scope.datax2 = [ [65,59,80,81,56,55,40] ]; $scope.options = { scaleShowGridLines : false }; $scope.labelsx2 = [" ",40] ]; $scope.options = { scaleShowGridLines : false };Chart.html
@H_403_13@<canvas id="line" class="chart chart-line" data="datax2" labels="labelsx2" legend="true" series="seriesx2" options="{showTooltips: false}"></canvas>