MS Edge doesn't render lines in a 3D force directed graph

34 Views Asked by At

I have a force-directed graph made using D3.js. In Firefox, Chrome and Opera everything renders fine. My problem is that MS Edge (Win10, version 44.17763.1.0) doesn't draw edges and lines, that is the only flaw - otherwise everything works (texts, nodes, arrows, movement, zoom etc.).

Event such a simple code (below) doesn't work - the red line isn't drawn:

  //  test 
  legend.append("line")
        .attr("x1", 0)    
        .attr("y1", 10)     
        .attr("x2", 40)     
        .attr("y2", 10)   
        .style("stroke", "red")
        .attr("class", "link");

Here is the example: https://jsfiddle.net/svorad/jc0pa8dz/1/

I already tried everything I could thought of. Any ideas?

0

There are 0 best solutions below