You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to detect a change in a d3 chart component and have the updated chart reload live. For example, if when I change the rect color of the BarChart, I wanted to see the color livereload. If in the build-systems example you were to add a BarChart:
import React from "react"
import BarChart from './BarChart'
const systems = ['Gulp1!','Grunt','Tsers']
export default class App extends React.Component {
render() {
return (
<div>
<h1>Hello!</h1>
<ul>{systems.map(s => <li>{s}</li>)}</ul>
<BarChart data = {[5,10,1,3]} size = {[500,500]} />
</div>
)
}
}
HI,
I'm unable to detect a change in a d3 chart component and have the updated chart reload live. For example, if when I change the rect color of the BarChart, I wanted to see the color livereload. If in the build-systems example you were to add a BarChart:
and then add this component:
The text was updated successfully, but these errors were encountered: