如何限制pygal
生成的 SVG 的宽度/高度?我目前正在通过img
标签进行操作,但是有更好的方法吗?
<img src="http://localhost/images/Store.Diapers.svg" width=800 height=600/>
如果它对某人有帮助,它就像在参数中指定 width=1000, height=800 一样简单:
chart = pygal.StackedLine(width=1000, height=800)
您可以为此使用 div ......
将以下内容放入您的代码中:
<div class="parent">
<img src="http://localhost/images/Store.Diapers.svg">
</div>
并将其放在您的 .css 文件中
.imagebox {
width: 42px; /*This is the height of the div class it self */
height: 42px;
}
/* This changes the height of any image with the <img> tag within the div class*/
.imagebox img {
height: 800px;
width: 600px;
}