Can neo4j help to draw a graph where the length of each edge is determined by its value

Hi friends,

I am wondering if neo4j has a such function that can help to draw a graph where the length of each edge is determined by its value. For example, each edge of the graph has the property of weight like (A, B, 0.8), (B, C, 0.1), where nodes are A, B, C, and the weight of their corresponding edges are 0.8 and 0.1, respectively. Can neo4j help to draw the pic that the length of the edge with weight 0.8 is 8 times longer than the edge with weight 0.1? If it can, may I ask how I can implement that?

Many thanks!

Not out of the box, but I think you can determine the weight of the relationship in either d3 or 2d-force graph or sigmajs based on the property of the relationship.