gpt4 book ai didi

javascript - 如何单独更改 d3.js 条形图条的颜色并为它们制作比例尺?

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:54 24 4
gpt4 key购买 nike

我目前正在构建一个图表,该图表显示每个元素使用的资源量的数据,并使用条形图表示它。我目前正在尝试更改条形图的颜色,以便每个条形图都有自己特定的颜色。目前它设置为在 2 个蓝色之间缩放并根据它的长度选择一种颜色,但我希望每个颜色都是 3 种颜色中的一种。我还试图制作一个图例,显示每种颜色在所述条形图上代表什么。

<!DOCTYPE html>
<html>
<head>
<meta>
<meta name="description" content="Drawing Shapes w/ D3 - " />
<meta charset="utf-8">
<title>Resources per Project</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>

<style type="text/css">
h1 {
font-size: 35px;
color: darkgrey;
font-family: Helvetica;
border-bottom-width: 3px;
border-bottom-style: dashed;
border-bottom-color: black;
}

h2 {
font-size: 20px;
color: black;
font-family: Helvetica;
text-decoration: underline;
margin-left: 350px;
margin-top: 0px;
}

.label {
font-size: 20px;
color: darkgrey;
font-family: "Arial Black";
border-bottom-width: 3px;
border-bottom-style: dashed;
border-bottom-color: black;
}
</style>
</head>

<body>
<h1>Resources used per Project</h1>

<p>Choose Month:
<select id="label-option">
<option value="April">April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
<option value="September">September</option>
</select>
<script type="text/javascript">
var width = 800
var height = 500
var emptyVar = 0
var dataArrayProjects = ['2G', 'An', 'At', 'Au', 'AW', 'Ch', 'CI', 'CN']
var April = [0.35, 1.66, 3.04, 1.54, 3.45, 2.56, 2.29, 1.37]
var May = [0.36, 1.69, 3.08, 1.54, 3.62, 2.61, 2.22, 1.44]
var June = [0.34, 1.7, 3.08, 1.63, 3.66, 2.68, 2.24, 1.51]
var July = [0.3, 1.72, 3.17, 1.67, 3.56, 2.56, 2.17, 1.44]
var August = [0.28, 1.79, 3.18, 1.71, 3.62, 2.73, 2.26, 1.54]
var September = [1.23, 1.74, 3.12, 1.61, 3.66, 2.71, 2.2, 1.48]

d3.select("#label-option").on("change", change)

function change() {
var data = April;
if (this.selectedIndex == 1){
data = May;
} else if (this.selectedIndex == 2){
data = June;
} else if (this.selectedIndex == 3){
data = July;
} else if (this.selectedIndex == 4){
data = August;
} else if (this.selectedIndex == 5){
data = September;
}
canvas.selectAll("rect")
.data(data)
.attr("width", emptyVar)
.attr("height", 50)
.attr("fill", function(d) {
return color(d)
})
.attr("y", function(d, i) {
return i * 55
})

bars.transition()
.duration(1500)
.delay(200)
.attr("width", function(d) {
return widthScale(d);
});

texts = canvas.selectAll(".label")
.data(data)
.attr("x", function(d) {
return widthScale(d) + 10;
})
.attr("fill", function(d) {
return color(d)
})
.attr("y", function(d, i) {
return (i * 55) + 25
})
.style("opacity", 0)
.text(function(d, i) {
return d;
})

texts.transition()
.duration(2000)
.delay(180)
.style("opacity", 1)
}

var widthScale = d3.scale.linear()
.domain([0, 4])
.range([0, width - 60]);

var heightScale = d3.scale.ordinal()
.domain(dataArrayProjects)
.rangePoints([10, height - 85]);

var color = d3.scale.linear()
.domain([0, 4])
.range(["#000033", "#22cdff"])

var xAxis = d3.svg.axis()
.ticks("30")
.scale(widthScale);

var yAxis = d3.svg.axis()
.scale(heightScale)
.orient("left");

var canvas = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(40, 0)");

var bars = canvas.selectAll("rect")
.data(April)
.enter()
.append("rect")
.attr("width", emptyVar)
.attr("height", 50)
.attr("fill", function(d) {
return color(d)
})
.attr("y", function(d, i) {
return i * 55
})

var texts = canvas.selectAll(".label")
.data(April)
.enter()
.append("text")
.attr("class", "label")
.attr("x", function(d) {
return widthScale(d) + 10;
})
.attr("fill", function(d) {
return color(d)
})
.attr("y", function(d, i) {
return (i * 55) + 25
})
.text(function(d, i) {
return d;
})
.style("opacity", 0)

canvas.append("g")
.attr("transform", "translate(0, 430)")
.attr("font-family", "Helvetica")
.attr("font-size", "15px")
.call(xAxis);

canvas.append("g")
.attr("font-family", "Helvetica")
.attr("font-size", "15px")
.style("fill", "black")
.attr("class", "y axis")
.call(yAxis);

bars.transition()
.duration(1500)
.delay(200)
.attr("width", function(d) {
return widthScale(d);
})

texts.transition()
.duration(2000)
.delay(180)
.style("opacity", 1)

var yAxisLine = canvas.append("line")
.attr("x1", -3)
.attr("y1", 0)
.attr("x2", -3)
.attr("y2", 436)
.attr("stroke-width", 6)
.attr("stroke", "black");

</script>
<h2>Resources</h2>
</body>
</html>

如何单独设置条形的颜色以及如何使用所述颜色制作图例。

提前致谢!

最佳答案

为了改变颜色,您已经分配了一个变量color,而且它还用于填充条形图。

您的代码是:

var color = d3.scale.linear()
.domain([0, 4])
.range(["#000033", "#22cdff"])

用一些固定的颜色代替初始化

var color = ["#000033", "#22cdff", "#010101"]

并更改代码库以将其分配到条形填充中:

var bars = canvas.selectAll("rect")
.data(April)
.enter()
.append("rect")
.attr("width", emptyVar)
.attr("height", 50)
.attr("fill", function(d, i) {
return color[i%3] // here it is picking up colors in sequence
})
.attr("y", function(d, i) {
return i * 55
})

var texts = canvas.selectAll(".label")
.data(April)
.enter()
.append("text")
.attr("class", "label")
.attr("x", function(d) {
return widthScale(d) + 10;
})
.attr("fill", function(d, i) {
return color[i%3] // here it is picking up colors in sequence
})
.attr("y", function(d, i) {
return (i * 55) + 25
})
.text(function(d, i) {
return d;
})
.style("opacity", 0)

颜色将从颜色数组中选取。

对于图例,有许多可用的插件和代码。可以引用one of my answer

关于javascript - 如何单独更改 d3.js 条形图条的颜色并为它们制作比例尺?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38090825/

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