Reputation: 4287
For a given plot with a X and Y axis, how would one get the position of the X and Y axis? I guess I would need the offsets of the two axes. Please advise.
Upvotes: 2
Views: 951
Reputation: 3930
Nest your elements in the container element that has the boundaries you want.
For example, if you want that your x axis start in the boundary of the y axis, replace (in line 66)
svg.append("line")
With
d3.select(".nv-scatterWrap").append("line")
Upvotes: 3