Billboardjs chart bigger than it's container
问题 When generating a billboard chart and not providing a size, sometime the resulting svg is bigger than the container. Is there a way to make sure the svg size is always within bounds? That is, without providing size in the generation config. var chart = bb.generate({ bindto: "#chart", data: { columns: [ ["data1", 130, 200, 100, 170, 150, 250], ["data2", 130, 100, 140, 35, 110, 50] ], types: { data1: "line", data2: "area-spline" }, colors: { data1: "red", data2: "green" } } }); setTimeout(() =>