gpt4 book ai didi

javascript - 如何使用不同颜色为散点图下方的区域着色

转载 作者:行者123 更新时间:2023-11-28 08:00:44 26 4
gpt4 key购买 nike

我是这个论坛的新手,感谢我能得到的所有帮助。

我尝试用不同的颜色在图表下方的区域上进行大量搜索,但由于某种原因,我的代码无法使用它。所以我不得不删除那段代码。

我想使用基于我的数据的颜色对散点图下方的区域进行着色(例如:0 到 2:红色;2 到 5:蓝色;>5:绿色)。我找到了一个以垂直方式应用渐变的代码,但我希望颜色在图表中水平显示。

以下是我的 JavaScript 代码:

var margin = {top: 20, right: 20, bottom: 30, left: 50},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;

//var parseDate = d3.time.format("%d-%b-%y").parse;

var x = d3.scale.linear()
.range([0, width]);

var y = d3.scale.linear()
.range([height, 0]);

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");

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

var area = d3.svg.area()
.x(function(d) { return x(d.time); })
.y0(height)
.y1(function(d) { return y(d.conc); });

var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

function make_x_axis() {
return d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(20)

function make_y_axis() {
return d3.svg.axis()
.scale(y)
.orient("left")
.ticks(20)

// load data
d3.json("convertcsv.json", function(data) {
data.forEach(function(d) {
d.conc = +d.conc;
d.time = +d.time;
});

x.domain(d3.extent(data, function(d) { return d.time; }));
y.domain([0, d3.max(data, function(d) { return d.conc; })]);

svg.append("area-gradient")
.attr("id", "temperature-gradient")
.attr("gradientUnits", "userSpaceOnUse")
.attr("x1", 0).attr("y1", y(50))
.attr("x2", 0).attr("y2", y(60))
.selectAll("stop")
.data([
{offset: "0%", color: "steelblue"},
{offset: "50%", color: "gray"},
{offset: "100%", color: "red"}
])

svg.append("path")
.datum(data)
.attr("class", "area")
.attr("d", area)
.style("fill", function(d) {
if (d.conc >= 5 ) {return "#00CC00"}
else if (d.conc < 5 && d.conc >= 2 ) { return "#0000CC" }
else { return "#00CC00"}
;})

svg.selectAll("dot")
.data(data)
.enter().append("circle")
.attr("r", 10)
.style("fill", function(d) { // <== Add these
if (d.conc >= 5 ) {return "#00CC00"} // <== Add these
else if (d.conc < 5 && d.conc >= 2 ) { return "#0000CC" }
else { return "#CC0000"} // <== Add these
;}) // <== Add these
.attr("cx", function(d) { return x(d.time); })
.attr("cy", function(d) { return y(d.conc); })
.on("mouseover", function(d) {
div.transition()
.duration(200)
.style("opacity", .9);
div .html(d.conc + "%")
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
div.transition()
.duration(500)
.style("opacity", 0);
});

var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Concentration");


svg.append("g")
.attr("class", "grid")
.attr("transform", "translate(0," + height + ")")
.call(make_x_axis()
.tickSize(-height, 0, 0)
.tickFormat("")
)

svg.append("g")
.attr("class", "grid")
.call(make_y_axis()
.tickSize(-width, 0, 0)
.tickFormat("")
)

});

最佳答案

您可以定义多个方向的渐变,甚至可以使用 CSS 定义每个停止点的颜色。最好在 SVG 元素中的 defs 标签下定义渐变。线性渐变的方向由属性 x1y1x2y2 给出。例如,如果您有 x1 = 0y1 = 1x2 = 1y2 = 1,渐变将是对 Angular 线的,从左上角到右下角。考虑以下代码:

var div = d3.select('#svg-container'),
svg = div.append('svg');

svg.attr('width', width).attr('height', height);

// Create the svg:defs element and the main gradient definition.
var svgDefs = svg.append('defs');

// Define the gradient from (0, 0) to (1, 0) (horizontal)
var mainGradient = svgDefs.append('linearGradient')
.attr('id', 'mainGradient')
.attr('x1', 0).attr('y1', 1)
.attr('x2', 0).attr('y2', 0);

// Create the stops of the main gradient. Each stop will be assigned
// a class to style the stop using CSS.
mainGradient.append('stop')
.attr('class', 'stop-left')
.attr('offset', '0%');

mainGradient.append('stop')
.attr('class', 'stop-right')
.attr('offset', '100%');

// Use the gradient to set the shape fill, via CSS.
svg.append('rect')
.classed('filled', true)
.attr('x', padding)
.attr('y', padding)
.attr('width', (width / 2) - 1.5 * padding)
.attr('height', height - 2 * padding);

此外,您不需要在 JavaScript 中设置停止颜色,您可以使用 CSS 来配置它们。

<style>
.stop-left {
stop-color: #3f51b5; /* Indigo */
}
.stop-right {
stop-color: #009688; /* Teal */
}
.filled { fill: url(#mainGradient); }
</style>

结果:

enter image description here

此示例的完整代码可通过 gist 获取。 。更多详情请参阅SVG linearGradient MDN 站点中的元素。问候,

关于javascript - 如何使用不同颜色为散点图下方的区域着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25431037/

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