3

如何限制pygal生成的 SVG 的宽度/高度?我目前正在通过img标签进行操作,但是有更好的方法吗?

<img src="http://localhost/images/Store.Diapers.svg" width=800 height=600/>
4

2 回答 2

3

如果它对某人有帮助,它就像在参数中指定 width=1000, height=800 一样简单:

chart = pygal.StackedLine(width=1000, height=800)
于 2014-11-21T18:34:59.917 回答
1

您可以为此使用 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;
}
于 2014-11-13T18:58:35.807 回答