Skip to content
Advertisement

Update React-D3-Graph ViewBox

So I have a dataset called actors that holds my nodes and links called scratch that looks like this…

JavaScript

And I’m trying to make the graph show up on my react app when ran. The problem I’m having is that the viewbox is extremely small so I can’t use a much larger dataset without nodes going off the screen. I was wondering if there was a way to change the viewbox height and width to be certain values? Note: I’ve found that a viewbox={0 0 9000 9000} works for a larger dataset. Here is my code…

JavaScript

Also, I’ve seen examples using div, however, I have another class called Navbar that shows at the top above the graph and it doesn’t like my Navbar with div.

Advertisement

Answer

So I figured out my problem. In my App.css file I only had

JavaScript

And I needed to have

JavaScript

Although it is extremely zoomed in so that’s something I need to look at.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement