[Google Chart API] 3. Chart size
Chart size
Specify chart size with chs=<width in pixels>x<height in pixels>
For example, chs=300x200
generates a chart 300 pixels wide and 200 pixels high.
The largest possible area for all charts except maps is 300,000 pixels. As the maximum height or width is 1000 pixels, examples of maximum sizes are 1000x300, 300x1000, 600x500, 500x600, 800x375, and 375x800.
For maps, the maximum size is 440 pixels wide by 220 pixels high.
Pie charts are clipped (only partially visible) if the size specified is too small. General size guidelines for pie charts are:
- a two-dimensional chart needs to be roughly twice as wide as it is high.
- a three-dimensional chart needs to be roughly two and a half times wider than it is high.
chs 파라미터를 통해 width 와 height 픽셀을 지정합니다.
출처: Google Chart API