sisanared
sisanared

Reputation: 4287

D3.js how to get the position/offset of x and y axis

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

Answers (1)

Federico
Federico

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

Related Questions