作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 AngularCharts这是 Chart.js 的 AgnularJS 包装器。我想从我的图表中删除所有网格线,所以只有实际的折线图。但是网格并没有被移除。
Controller
$scope.labelsx2 = [" ", " ", " ", " Time ago ", " ", " ", " "];
$scope.seriesx2 = [' '];
$scope.datax2 = [
[65, 59, 80, 81, 56, 55, 40]
];
$scope.options = {
scaleShowGridLines : false
};
$scope.labelsx2 = [" ", " ", " ", " Time ago ", " ", " ", " "];
$scope.seriesx2 = [' '];
$scope.datax2 = [
[65, 59, 80, 81, 56, 55, 40]
];
$scope.options = {
scaleShowGridLines : false
};
<canvas id="line" class="chart chart-line" data="datax2" labels="labelsx2" legend="true" series="seriesx2" options="{showTooltips: false}"></canvas>
最佳答案
您可以应用以下选项来删除网格线。这对我有用。
$scope.options = {
scales: {
xAxes: [{
gridLines: {
display: false
}
}],
yAxes: [{
gridLines: {
display: false
}
}]
}
};
关于angularjs - 删除 AngularCharts 中的网格线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38306785/
我正在使用 AngularCharts这是 Chart.js 的 AgnularJS 包装器。我想从我的图表中删除所有网格线,所以只有实际的折线图。但是网格并没有被移除。 Controller $s
我试图打开这个数据库 使用 Angular 图作为雷达图。 我想知道如何将我的 Firebase 数组转变为与此 Angular 图表数组格式兼容的新数组? $scope.labels =["Ea
当我尝试使用 Angular-chart 时,我遇到了这个错误: TypeError: Object [object Object] has no method 'width' at e (http:
我是一名优秀的程序员,十分优秀!