我正在尝试使用easypiechart的ha angularJs版本在值更改时创建简单的刻度颜色。值更改时,颜色应从红色更改为绿色。
在旧的easypiechart版本(基于jquery)中,可以通过执行以下类似操作来实现:
barColor: function(percent) {
percent /= 100;
return "rgb(" + Math.round(255 * (1-percent)) + ", " + Math.round(255 * percent) + ", 0)";
}
我已经大功告成了我想要做的事,向上是有角度的,向下是jquery:http://plnkr.co/edit/7yQ1SiIPHFh62yxwnW9e?p=preview
最佳答案
除了在我定义的更复杂的指令中使用简单的饼图外,我和您有同样的问题。我花了点时间来弄清楚如何在范围内传递百分比和选项模型变量,并在外部指令的属性更改时进行更改。因此,我放弃了有角度的easyPieChart版本,而回到了jQuery版本(这可能是我自己,而不是easypiechart指令,因为我对angular还是陌生的,所以我在某些概念上苦苦挣扎)。
这是我的代码的简化版本,显示了我所做的事情:
我的指令infoBox.js:
'use strict';
commonApp.directive('infoBox', function () {
return {
restrict: 'E',
replace: true,
scope: {
percent: '@',
text: '@',
content: '@',
textIsNumber: '@'
},
templateUrl: '/directives/infoBox.html',
controller: 'infoBoxController',
}
};
});
我的模板infoBox.html
<div class="infobox">
<div class="infobox-progress">
<div class="easy-pie-chart percentage" data-percent="{{percent}}" data-size="50">
<span class="percent">{{percent}}</span>%
</div>
</div>
<div class="infobox-data">
<span ng-class="{'infobox-data-number': textIsNumber, 'infobox-text': !textIsNumber}" class="infobox-data-number">{{text}}</span>
<div class="infobox-content">
{{content}}
</div>
</div>
</div>
还有我的Controller infoBoxController.js
'use strict';
commonApp.controller('infoBoxController',
function infoboxController($scope, $log, $attrs, $element) {
var init = function () {
var $chart = $element.find('.easy-pie-chart.percentage')[0];
var barColor = $element.data('color') || (!$element.hasClass('infobox-dark') ? $element.css('color') : 'rgba(255,255,255,0.95)');
var trackColor = barColor == 'rgba(255,255,255,0.95)' ? 'rgba(255,255,255,0.25)' : '#E2E2E2';
$($chart).easyPieChart({
barColor: barColorFunction,
trackColor: trackColor,
scaleColor: false,
lineCap: 'butt',
lineWidth: parseInt(size / 10),
animate: /msie\s*(8|7|6)/.test(navigator.userAgent.toLowerCase()) ? false : 1000,
size: size
});
};
var barColorFunction = function (percent) {
if (percent <= 100) {
return ($element.data('color') || (!$element.hasClass('infobox-dark') ? $element.css('color') : 'rgba(255,255,255,0.95)'));
} else {
return ('rgba(255, 0, 0, 0.7)');
}
};
init();
var update = function () {
var $chart = $element.find('.easy-pie-chart.percentage')[0];
$($chart).data('easyPieChart').update($attrs.percent);
};
$scope.$watch(function () {
return [$attrs.percent];
}, update, true);
}
);
指令用法:
<info-box class="infobox-blue2" percent="{{modelPercent}}" text="describes pie chart" text-is-number="false" content="more describing pie chart"></info-box>
我有一个关于属性百分比的手表,它运行直接的jquery更新功能。 barColorFunction是控制我显示什么颜色的东西。
情况略有不同,但我希望这会有所帮助。