- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我非常接近使用 react-faux-dom
包在 React 中完成一个组条形图。除了实际的矩形之外,一切都已设置。我已经旋转了几个小时,所以我希望有人能看到我错过了什么。我正在使用的示例 is here 。我的目标是拥有一个带有多个条形组的时间刻度 x 轴。 X 轴和 Y 轴当前渲染没有问题。
数据结构目前看起来像这样:
[
{key: "oauths", values: [
{ date: Tue Jul 26 2016 00:00:00 GMT-1000 (HST), key: "oauths", value: 3060},
{ date: Tue Jul 27 2016 00:00:00 GMT-1000 (HST), key: "oauths", value: 2060},
{ date: Tue Jul 28 2016 00:00:00 GMT-1000 (HST), key: "oauths", value: 3270},
...]},
{key: "user_stats", values: [
{ date: Tue Jul 26 2016 00:00:00 GMT-1000 (HST), key: "user_stats", value: 2976},
...
]}
]
React 组件的 render 方法如下。最后的 svg.append()...
render() {
const data = [ {}, {} ]; // see above
// Constants
const margin = {top: 30, right: 20, bottom: 30, left: 50},
width = 600 - margin.left - margin.right,
height = 400 - margin.top - margin.bottom,
n = this.props.dataQueryPeriod.length, // number of samples
m = 2; // number of series
// Parse the date / time
const parseDate = d3.time.format("%Y-%m-%d").parse;
// Set ranges
const yScale = d3.scale.linear()
.range([height, 0]);
const x0 = d3.scale.ordinal()
.domain(d3.range(n))
.rangeBands([0, width], .2);
const x1 = d3.scale.ordinal()
.domain(d3.range(m))
.rangeBands([0, x0.rangeBand()]);
const xScale = d3.time.scale().range([0, width]);
// Test colors
var z = d3.scale.category10();
// Define axes
const xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(d3.time.days);
const yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.tickFormat(d3.format("s"));
// Convert structured data to nested data
const nest = d3.nest()
.key(function(d) { return d.key; })
.sortKeys(d3.ascending);
// Create node
let node = ReactFauxDOM.createElement('svg');
let svg = d3.select(node)
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom+40)
.append("g")
.attr("transform", `translate(${margin.left},${margin.top})`);
data.forEach(function(d) {
d.date = parseDate(d.date);
d.value = +d.value;
});
const nestedData = nest.entries(data);
console.log("nested data", nestedData);
console.log("pre nest data", data);
// Define axes domains
xScale.domain(d3.extent(data, function(d) { return d.date; }));
yScale.domain([0, d3.max(data, function(d) { return d.value; })]);
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
svg.append("g")
.attr("class", "x axis")
.attr("transform", `translate(0,${height})`)
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(-65)";
});
svg.append("g").selectAll("g")
.data(nestedData)
.enter().append("g")
.style("fill", function(d, i) { return z(i); })
.attr("transform", function(d, i) { return `translate(${x1(i)},0)`; })
.selectAll("rect")
.data(function(d) { return d.value; })
.enter().append("rect")
.attr("width", x1.rangeBand())
.attr("height", yScale)
.attr("x", function(d, i) { return x0(i); })
.attr("y", function(d) { return height - yScale(d.value); });
return node.toReact();
}
最佳答案
如果您的数据像您提供的示例一样开始,则它已经嵌套并且 d3.nest()。假设您的示例中的数据是 nestedData
,那么您的问题是您需要绑定(bind) values
而不是 value
。见下文:
svg.append("g").selectAll("g")
.data(nestedData)
.enter()
.append("g")
.style("fill", function(d, i) { return z(i); })
.attr("transform", function(d, i) { return `translate(${x1(i)},0)`; })
.selectAll("rect")
.data(function(d) { return d.values; }) // This needs to be values
.enter().append("rect")
.attr("width", x1.rangeBand())
.attr("height", yScale)
.attr("x", function(d, i) { return x0(i); })
.attr("y", function(d) { return height - yScale(d.value); });
关于javascript - 如何使用 React Faux DOM 在 D3 分组条形图中渲染矩形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38649771/
http://jsfiddle.net/YZdv4/50/这是 jsfiddles 更新:我认为您可以使用绝对定位和 javascript 来做到这一点;但是,是否有仅使用 css/floats 的解
如前所述,我正在尝试使用人造列方法来获得匹配高度的列。我遵循了 CSS: The Missing Manual 中列出的方法,它与我在 ALA 和其他在线资源上看到的所有内容相匹配。我遇到的问题是虚假
我在几个 Meshlab 中发现了人造边缘 的概念过滤器说明。例如,在 Stratified Triangle Sampling 过滤器中,其中一个选项的描述是: Sample NonFaux Edg
我非常接近使用 react-faux-dom 包在 React 中完成一个组条形图。除了实际的矩形之外,一切都已设置。我已经旋转了几个小时,所以我希望有人能看到我错过了什么。我正在使用的示例 is h
在 CSS 布局中,“Faux column”一词的含义是什么? 最佳答案 意思是“假专栏”。法语单词faux大致翻译为 false 或 fake。 faux columns technique背后的
在 CSS 布局中,“Faux column”一词的含义是什么? 最佳答案 意思是“假专栏”。法语单词faux大致翻译为 false 或 fake。 faux columns technique背后的
我有这样的布局: Content stuff... Content stuff... Conten
我有一个要以 HTML 格式显示的分层表。 和 标签对于事物的层次部分非常有用,但我希望总共有 2 或 3 列,其中最左边的列按层次缩进,例如 富 foo1 foo2 foo2a foo3 foo3a
我尝试将react与react-d3一起使用,但我总是收到错误,第一次,我使用了react v16,但它请求React v0.14.9。 所以现在我可以在错误出现之前看到图表。 我用过this tut
我是一名优秀的程序员,十分优秀!