Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.56 KB

File metadata and controls

33 lines (24 loc) · 1.56 KB
title Display a chart image in Excel
description When you retrieve a chart image, the Excel API in Microsoft Graph returns the image as a base-64 string that you can display inside an HTML image tag.
ms.localizationpriority medium
author lumine2008
ms.subservice excel
ms.date 11/07/2024
ms.topic article

Display a chart image in Excel

When you perform a GET operation to retrieve a chart image, the Excel API in Microsoft Graph returns the image as a base-64 string. You can display the base-64 string inside an HTML image tag:

 <img src="data:image/png;base64,{base-64 chart image string}/>

For default behavior, use Image(width=0,height=0,fittingMode='fit').

Following is an example of a chart image returned with the default parameters.

Excel chart image with default height and width.

If you want to customize the display of the image, specify a height, width, and a fitting mode. Here is what the same chart image looks like if you retrieve it with these parameters: Image(width=500,height=500,fittingMode='Fill').

Related content