Workbook session Id that determines if changes are persisted or not. Optional.
Request body
In the request body, supply the values for relevant fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance you shouldn't include existing values that haven't changed.
Property
Type
Description
bold
boolean
Represents the bold status of font.
color
string
HTML color code representation of the text color. E.g. #FF0000 represents Red.
italic
boolean
Represents the italic status of the font.
name
string
Font name (e.g. "Calibri")
size
double
Size of the font (e.g. 11)
underline
string
Type of underline applied to the font. The possible values are: None, Single.
Response
If successful, this method returns a 200 OK response code and updated WorkbookChartFont object in the response body.
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var requestBody = new WorkbookChartFont
{
Bold = true,
Color = "color-value",
Italic = true,
Name = "name-value",
Size = 99d,
Underline = "underline-value",
};
var result = await graphClient.Drives["{drive-id}"].Items["{driveItem-id}"].Workbook.Worksheets["{workbookWorksheet-id}"].Charts["{workbookChart-id}"].Axes.ValueAxis.Format.Font.PatchAsync(requestBody);
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestBody = new WorkbookChartFont();
$requestBody->setBold(true);
$requestBody->setColor('color-value');
$requestBody->setItalic(true);
$requestBody->setName('name-value');
$requestBody->setSize(99);
$requestBody->setUnderline('underline-value');
$result = $graphServiceClient->drives()->byDriveId('drive-id')->items()->byItemId('driveItem-id')->workbook()->worksheets()->byWorksheetId('workbookWorksheet-id')->charts()->byChartId('workbookChart-id')->axes()->valueAxis()->format()->font()->patch($requestBody);