如何更改 Angular-Chart.js 的颜色
How to change colours for Angular-Chart.js
我使用 Angular-Chart.js(AngularJS Chart.js 版本)创建条形图。图表正在使用除颜色以外的选项。
即使我设置了它们,它也会显示 in the documentation,它们仍然是灰色的。
<div class="graph-display" ng-controller="chartController">
<canvas class="chart chart-bar"
data="bilans.data"
labels="bilans.labels"
series="bilans.series"
options="{
scaleShowHorizontalLines: true,
scaleShowVerticalLines: false,
tooltipTemplate: '<%= value %> $',
responsive: true
}"
colours="{
fillColor: 'rgba(47, 132, 71, 0.8)',
strokeColor: 'rgba(47, 132, 71, 0.8)',
highlightFill: 'rgba(47, 132, 71, 0.8)',
highlightStroke: 'rgba(47, 132, 71, 0.8)'
}"
></canvas>
</div>
实际上,选项有效,但颜色无效。我做错了什么吗?
您应该将 colours
对象声明为数组
"colours": [{
fillColor: 'rgba(47, 132, 71, 0.8)',
strokeColor: 'rgba(47, 132, 71, 0.8)',
highlightFill: 'rgba(47, 132, 71, 0.8)',
highlightStroke: 'rgba(47, 132, 71, 0.8)'
}];
更多信息请参考 / 。
对于较新的版本,请参阅 ,因为参数名称已更改。
正如@pankajparkar 所说。只需添加您还可以传递 html 颜色和 angular-chart.js 即可在 rgba 中使用适当的细微差别正确定义颜色对象,例如$scope.colors = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];
您想说:"colours"
$scope.colours = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];
我们还可以看到我们可以更改的其他属性,例如:图例、系列、悬停。在每个图表旁边,您可以看到一个名为 "settings " 的选项,这是您可以更改的所有内容。
我遇到了同样的困难。在文档中它说使用 "colors" 但是一旦我将 html 更新为:
chart-colours
具有 angular 个数组:
$scope.colours = ['#72C02C', '#3498DB', '#717984', '#F1C40F'];
成功了!
好像又改名了。我正在使用 angular-chart.js 1.0.3 条形图的颜色管理是这样的:
colors:[{
backgroundColor:"#F00",
hoverBackgroundColor:"#FF0",
borderColor:"#0F0",
hoverBorderColor:"#00F"
}];
在canvas标签中,属性的名称是chart-colors
截至 2017 年,我 angular-charts 可以使用以下代码。
元素的名称已更改。取自 angular-chart 源代码。
另外,一旦您 运行 没有颜色 angular-chart 就会为您生成它们。这包括背景颜色的 0.2 不透明度。
如果指定#hex 颜色,将添加不透明度。
通过全局指定颜色。
app.config(['ChartJsProvider', function (ChartJsProvider) {
// Using ChartJsProvider.setOptions('bar', { didn't seem to work for me.
// Nor did $scope.chartColors. Although I only tried that in the controller.
Chart.defaults.global.colors = [
{
backgroundColor: 'rgba(78, 180, 189, 1)',
pointBackgroundColor: 'rgba(78, 180, 189, 1)',
pointHoverBackgroundColor: 'rgba(151,187,205,1)',
borderColor: 'rgba(0,0,0,0',
pointBorderColor: '#fff',
pointHoverBorderColor: 'rgba(151,187,205,1)'
}, {
backgroundColor: 'rgba(229, 229, 229, 1)',
pointBackgroundColor: 'rgba(229, 229, 229, 1)',
pointHoverBackgroundColor: 'rgba(151,187,205,1)',
borderColor: 'rgba(0,0,0,0',
pointBorderColor: '#fff',
pointHoverBorderColor: 'rgba(151,187,205,1)'
}
...
在源代码中,颜色选择代码是当前的。通过 Chart.js 选项设置的颜色在此处重置(我没有让它工作)。
根据 angular-chart.js 源代码选择颜色:
var colors = angular.copy(scope.chartColors ||
ChartJs.getOptions(type).chartColors ||
Chart.defaults.global.colors
是的,如果您不指定对象,系统会为您设置不透明度。来自 angular-chart.js:
function convertColor (color) {
if (typeof color === 'object' && color !== null) return color;
if (typeof color === 'string' && color[0] === '#') return getColor(hexToRgb(color.substr(1)));
return getRandomColor();
}
...
function getColor (color) {
return {
backgroundColor: rgba(color, 0.2),
pointBackgroundColor: rgba(color, 1),
pointHoverBackgroundColor: rgba(color, 0.8),
borderColor: rgba(color, 1),
pointBorderColor: '#fff',
pointHoverBorderColor: rgba(color, 1)
};
}
最新版本 $scope.colors 似乎不起作用。您需要使用 chart-dataset-override="colors"
演示
angular.module("app", ["chart.js"]).controller("DoughnutCtrl", function ($scope) {
$scope.results = {'1': 0, '2': 0, '3': 0, '4': 0, '5': 0, '6': 0, '7': 0, '8': 0, '9': 0, '10': 0};
$scope.labels = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'];
$scope.data = [
[1, 3, 5, 8, 9, 10, 11, 12, 33, 5]
];
$scope.colors = [{
fillColor: 'rgba(59, 89, 152,0.2)',
strokeColor: 'rgba(59, 89, 152,1)',
pointColor: 'rgba(59, 89, 152,1)',
pointStrokeColor: '#fff',
pointHighlightFill: '#fff',
pointHighlightStroke: 'rgba(59, 89, 152,0.8)'
}];
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Multi Slot Transclude</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-chart.js/1.0.3/angular-chart.min.js"></script>
</head>
<body ng-app="app" ng-controller="DoughnutCtrl">
<canvas
class="chart chart-bar"
chart-data="data"
chart-labels="labels"
chart-dataset-override="colors">
</canvas>
</body>
</html>
我使用 Angular-Chart.js(AngularJS Chart.js 版本)创建条形图。图表正在使用除颜色以外的选项。
即使我设置了它们,它也会显示 in the documentation,它们仍然是灰色的。
<div class="graph-display" ng-controller="chartController">
<canvas class="chart chart-bar"
data="bilans.data"
labels="bilans.labels"
series="bilans.series"
options="{
scaleShowHorizontalLines: true,
scaleShowVerticalLines: false,
tooltipTemplate: '<%= value %> $',
responsive: true
}"
colours="{
fillColor: 'rgba(47, 132, 71, 0.8)',
strokeColor: 'rgba(47, 132, 71, 0.8)',
highlightFill: 'rgba(47, 132, 71, 0.8)',
highlightStroke: 'rgba(47, 132, 71, 0.8)'
}"
></canvas>
</div>
实际上,选项有效,但颜色无效。我做错了什么吗?
您应该将 colours
对象声明为数组
"colours": [{
fillColor: 'rgba(47, 132, 71, 0.8)',
strokeColor: 'rgba(47, 132, 71, 0.8)',
highlightFill: 'rgba(47, 132, 71, 0.8)',
highlightStroke: 'rgba(47, 132, 71, 0.8)'
}];
更多信息请参考
对于较新的版本,请参阅
正如@pankajparkar 所说。只需添加您还可以传递 html 颜色和 angular-chart.js 即可在 rgba 中使用适当的细微差别正确定义颜色对象,例如$scope.colors = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];
您想说:"colours"
$scope.colours = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];
我们还可以看到我们可以更改的其他属性,例如:图例、系列、悬停。在每个图表旁边,您可以看到一个名为 "settings " 的选项,这是您可以更改的所有内容。
我遇到了同样的困难。在文档中它说使用 "colors" 但是一旦我将 html 更新为:
chart-colours
具有 angular 个数组:
$scope.colours = ['#72C02C', '#3498DB', '#717984', '#F1C40F'];
成功了!
好像又改名了。我正在使用 angular-chart.js 1.0.3 条形图的颜色管理是这样的:
colors:[{
backgroundColor:"#F00",
hoverBackgroundColor:"#FF0",
borderColor:"#0F0",
hoverBorderColor:"#00F"
}];
在canvas标签中,属性的名称是chart-colors
截至 2017 年,我 angular-charts 可以使用以下代码。
元素的名称已更改。取自 angular-chart 源代码。
另外,一旦您 运行 没有颜色 angular-chart 就会为您生成它们。这包括背景颜色的 0.2 不透明度。
如果指定#hex 颜色,将添加不透明度。
通过全局指定颜色。
app.config(['ChartJsProvider', function (ChartJsProvider) {
// Using ChartJsProvider.setOptions('bar', { didn't seem to work for me.
// Nor did $scope.chartColors. Although I only tried that in the controller.
Chart.defaults.global.colors = [
{
backgroundColor: 'rgba(78, 180, 189, 1)',
pointBackgroundColor: 'rgba(78, 180, 189, 1)',
pointHoverBackgroundColor: 'rgba(151,187,205,1)',
borderColor: 'rgba(0,0,0,0',
pointBorderColor: '#fff',
pointHoverBorderColor: 'rgba(151,187,205,1)'
}, {
backgroundColor: 'rgba(229, 229, 229, 1)',
pointBackgroundColor: 'rgba(229, 229, 229, 1)',
pointHoverBackgroundColor: 'rgba(151,187,205,1)',
borderColor: 'rgba(0,0,0,0',
pointBorderColor: '#fff',
pointHoverBorderColor: 'rgba(151,187,205,1)'
}
...
在源代码中,颜色选择代码是当前的。通过 Chart.js 选项设置的颜色在此处重置(我没有让它工作)。
根据 angular-chart.js 源代码选择颜色:
var colors = angular.copy(scope.chartColors ||
ChartJs.getOptions(type).chartColors ||
Chart.defaults.global.colors
是的,如果您不指定对象,系统会为您设置不透明度。来自 angular-chart.js:
function convertColor (color) {
if (typeof color === 'object' && color !== null) return color;
if (typeof color === 'string' && color[0] === '#') return getColor(hexToRgb(color.substr(1)));
return getRandomColor();
}
...
function getColor (color) {
return {
backgroundColor: rgba(color, 0.2),
pointBackgroundColor: rgba(color, 1),
pointHoverBackgroundColor: rgba(color, 0.8),
borderColor: rgba(color, 1),
pointBorderColor: '#fff',
pointHoverBorderColor: rgba(color, 1)
};
}
最新版本 $scope.colors 似乎不起作用。您需要使用 chart-dataset-override="colors"
演示
angular.module("app", ["chart.js"]).controller("DoughnutCtrl", function ($scope) {
$scope.results = {'1': 0, '2': 0, '3': 0, '4': 0, '5': 0, '6': 0, '7': 0, '8': 0, '9': 0, '10': 0};
$scope.labels = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'];
$scope.data = [
[1, 3, 5, 8, 9, 10, 11, 12, 33, 5]
];
$scope.colors = [{
fillColor: 'rgba(59, 89, 152,0.2)',
strokeColor: 'rgba(59, 89, 152,1)',
pointColor: 'rgba(59, 89, 152,1)',
pointStrokeColor: '#fff',
pointHighlightFill: '#fff',
pointHighlightStroke: 'rgba(59, 89, 152,0.8)'
}];
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Multi Slot Transclude</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-chart.js/1.0.3/angular-chart.min.js"></script>
</head>
<body ng-app="app" ng-controller="DoughnutCtrl">
<canvas
class="chart chart-bar"
chart-data="data"
chart-labels="labels"
chart-dataset-override="colors">
</canvas>
</body>
</html>