Dynamically increase height and width auto

0

I created divs dynamically in javascript. I have the div with the size in the car. The problem is that the div cuts off a part of the circle. How can I resolve this without pixel values?

div.style.height = "auto";

example: link

    
asked by anonymous 23.04.2015 / 15:01

1 answer

1

It is not the DIV that is cutting, but the SVG that has the attribute height="42" and ends up cutting the graph.

    
23.04.2015 / 16:04