gpt4 book ai didi

javascript - donut chart 中的过渡颜色

转载 作者:行者123 更新时间:2023-11-30 20:23:47 25 4
gpt4 key购买 nike

我有一个圆环图,显示评分(满分 10 分)。如果评分 > 5,则它将显示为红色,否则显示为绿色。我还在图表中添加了动画,以便评分逐渐增加。我需要做的唯一更改是,如果评级超过 5,则评级弧应该以绿色开始,然后在超过 5 时变为红色。

这是代码笔网址:https://codepen.io/javacodenet/pen/pKGmRx

var duration = 1500,
transition = 200,
percent = 7;
var width = 260;
var height = 260;
var thickness = 30;
var anglesRange = 0.75 * Math.PI
var dataset = {
lower: calcPercent(0),
upper: calcPercent(percent)
},
radius = Math.min(width, height) / 2;
var colors = ["#fb4f5d", "#efefef"]
var arc = d3.arc()
.innerRadius(radius - thickness)
.outerRadius(radius);

var pie = d3.pie()
.value(function(d) {
return d;
})
.sort(null)
.startAngle(anglesRange * -1)
.endAngle(anglesRange);

var svg = d3.select("#chart").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");

var path = svg.selectAll("path")
.data(pie(dataset.lower))
.enter().append("path")
.attr('fill', '#efefef')
.attr("d", arc)
.each(function(d) {
this._current = d;
});

var text = svg.append("text")
.attr("text-anchor", "middle")
.attr("dy", ".3em");

var progress = 0;
format = d3.format("0");
var timeout = setTimeout(function() {
clearTimeout(timeout);
path = path.data(pie(dataset.upper))
.attr('fill', (d, i) => {
return i == 0 ? (d.value > 5 ? '#fb4f5d' : '#00FF00') : '#efefef';
});
path.transition().duration(duration).attrTween("d", function(a) {
var i = d3.interpolate(this._current, a);
var i2 = d3.interpolateNumber(progress, percent)
console.log(i2);
this._current = i(0);
return function(t) {
text.text(Math.round(i2(t)));
return arc(i(t));
};
});
}, 200);

function calcPercent(percent) {
return [percent, 10 - percent];
};
body {
width: 100%;
height: 100%;
font-family: Lora, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
background-color: #000;
}

path.color0 {
fill: #fff;
}

path.color1 {
fill: rgba(255, 255, 255, .3);
}

text {
font-size: 7em;
font-weight: 400;
line-height: 16em;
fill: #fff;
}
<html>
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>
<body>
<div id="chart"></div>
</body>
</html>

最佳答案

您想要的结果并不十分清楚:您想要一个 <path> 吗?元素超过 5 时变为红色,或者你想要两个 <path>元素,一个从 0 到 5 涂成绿色,另一个从 5 到 7 涂成红色?

如果前者是正确的,只需移动"fill"attrTween里面方法。这是您进行更改后的代码:

var duration = 1500,
transition = 200,
percent = 7;
var width = 260;
var height = 260;
var thickness = 30;
var anglesRange = 0.75 * Math.PI
var dataset = {
lower: calcPercent(0),
upper: calcPercent(percent)
},
radius = Math.min(width, height) / 2;
var colors = ["#fb4f5d", "#efefef"]
var arc = d3.arc()
.innerRadius(radius - thickness)
.outerRadius(radius);

var pie = d3.pie()
.value(function(d) {
return d;
})
.sort(null)
.startAngle(anglesRange * -1)
.endAngle(anglesRange);

var svg = d3.select("#chart").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");

var path = svg.selectAll("path")
.data(pie(dataset.lower))
.enter().append("path")
.attr('fill', '#efefef')
.attr("d", arc)
.each(function(d) {
this._current = d;
});

var text = svg.append("text")
.attr("text-anchor", "middle")
.attr("dy", ".3em");

var progress = 0;
format = d3.format("0");
var timeout = setTimeout(function() {
clearTimeout(timeout);
path = path.data(pie(dataset.upper));
path.transition().duration(duration).attrTween("d", function(a, index) {
var self = this;
var i = d3.interpolate(this._current, a);
var i2 = d3.interpolateNumber(progress, percent)
this._current = i(0);
return function(t) {
d3.select(self).attr('fill', index !== 0 ? '#efefef' : i2(t) > 5 ? '#fb4f5d' : '#00FF00');
text.text(Math.round(i2(t)));
return arc(i(t));
};
});
}, 200);

function calcPercent(percent) {
return [percent, 10 - percent];
};
body {
width: 100%;
height: 100%;
font-family: Lora, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
background-color: #000;
}

path.color0 {
fill: #fff;
}

path.color1 {
fill: rgba(255, 255, 255, .3);
}

text {
font-size: 7em;
font-weight: 400;
line-height: 16em;
fill: #fff;
}
<html>

<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>

<body>
<div id="chart"></div>
</body>

</html>

关于javascript - donut chart 中的过渡颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51149323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com