在 Excel 中显示图表图像
执行 GET 操作检索图表图像时,Microsoft Graph 中的 Excel API 会将图像作为 base-64 字符串返回。 可以在 HTML 图像标记内显示 base-64 字符串:
<img src="data:image/png;base64,{base-64 chart image string}/>
对于默认行为,请使用 Image(width=0,height=0,fittingMode='fit')
。
下面是使用默认参数返回的图表图像的示例。
若要自定义图像的显示方式,请指定高度、宽度和调整模式。 下面展示了使用 Image(width=500,height=500,fittingMode='Fill')
参数检索的同一个图表图像。