我正在尝试使用ha angularJs版本的easypiechart来创建一个简单的颜色变化颜色。当值改变时,颜色应该从红色变为绿色。
在基于jquery的旧的easypiechart版本中,通过执行类似的操作可以实现这一点:
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
答案 0 :(得分:0)
我和你有同样的问题,除了我在我自己定义的更复杂的指令中使用简单的饼图。我想知道如何在范围内传递百分比和期权模型变量,并在外部指令的属性发生变化时进行更改。因此,我放弃了easyPieChart的角度版本并回到了jQuery版本(这可能是我而不是easypiechart指令,因为我是角色的新手,所以我在努力解决一些概念)。
以下是我的代码的简化版本,显示了我的所作所为:
我的指令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>
我的控制器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控制着我显示的颜色。
情况略有不同,但我希望这会有所帮助。