我正在尝试使用d3绘制一些线条并做出反应。
基本上,当我到达我的页面时,我有以下示例代码:
class TimeSeries extends Component {
render() {
const cabra = this.props. myData
const width = this.props.size[1]
const height = this.props.size[0]
const xScale = scaleLinear().domain([0, 30])
.range([0, this.props.size[0]])
const yScale = scaleLinear().domain([0, 60])
.range([this.props.size[1], 0])
const temperature = myData.temperature
const humidity = myData.humidity
const transfData = temperature.map((value,index) => {
return {'indice':index,'value':value}
})
const sparkLine = d3.line()
.x( d => xScale(d.indice) )
.y( d => yScale(d.value) )
let bic = transfData.map((v,i) => {
console.log("Passing ",v,"to the sparkline function");
return sparkLine(v)
}
)
console.log("BIC",bic)
const sparkLines = transfData.map((v,i) =>
<path
key={'line' + i}
d={sparkLine(v)}
className='line'
style={{fill:'none',strokeWidth:2, stroke: "red"}}
/>)
return <svg width={width} height={height}>
<g transform={"translate(0," + (-this.props.size[1] / 2) + ")"}>
{sparkLines}
</g>
</svg>
}
除了不绘制线条之外,用于测试的BIC
部分正在打印undefined
值的数组。
对于更多测试,我在行函数中放了一些打印:
const sparkLine = d3.line()
.x( d => { console.log("Being Called"); return(xScale(d.indice)) })
.y( d => yScale(d.value) )
但是这个console.log永远不会被打印出来。
我不知道自己做错了什么。有人可以开导我吗?
答案 0 :(得分:2)
d3 line generator期望一组数据作为参数。对于该数组中的每个项目,您的.x()
和.y()
函数都会被调用。从您的示例代码看,您似乎将每个数据点传递给行生成器。
尝试传入transfData
,看看是否能为您解决此问题:
const sparkLines =
<path
key={'line' + i}
d={sparkLine(transfData)}
className='line'
style={{fill:'none',strokeWidth:2, stroke: "red"}}
/>