为g元素添加属性无效

来源:2-1 画布制作

阿常先森

2019-07-17 11:53

import React from 'react';

import * as d3 from 'd3'


import './Dthree.css'


class Dthree extends React.Component{

constructor(props){

super(props)

this.useD3 = this.useD3.bind(this)

}

componentDidMount(){

this.useD3()

}

useD3() {

const svg1 = d3.select('#container')

.append('svg')

.attr("width", 500)

.attr("height", 250)


const g = d3.select('svg')

.append('g')

.attr('transform', 'translate(50,50)')

.style('width','50px')


}

render () {

return (

<div id='container'>

</div>

)

}

}


export default Dthree


写回答 关注

1回答

  • isu_腾飞
    2020-08-01 18:16:00

    添加的那个属性无效你要说清楚啊 ?

使用D3制作图表

教你使用最酷的数据可视化图表,初探数据可视化奥秘

37890 学习 · 112 问题

查看课程

相似问题