我是这个论坛的新手,感谢我能得到的所有帮助。
我尝试在阴影下搜索相当多的颜色,但是出于某种原因,我的代码不能使用它。所以我不得不删除那段代码。
我想根据我的数据使用颜色对散点图下的区域进行着色(例如: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("")
)
});
答案 0 :(得分:0)
您可以在多个方向上定义渐变,甚至可以使用CSS定义每个停靠点的颜色。最好在SVG元素的defs
标记下定义渐变。线性渐变的方向由属性x1
,y1
,x2
和y2
给出。例如,如果您有x1 = 0
,y1 = 1
,x2 = 1
和y2 = 1
,则渐变将是从左上角到右下角的对角线。请考虑以下代码:
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);
此外,您不需要在JavaScripts中设置停止颜色,您可以使用CSS配置它们。
<style>
.stop-left {
stop-color: #3f51b5; /* Indigo */
}
.stop-right {
stop-color: #009688; /* Teal */
}
.filled { fill: url(#mainGradient); }
</style>
结果:
此示例的完整代码以gist的形式提供。 MDN站点中SVG linearGradient元素的更多详细信息。的问候,