Skip to main content

CreateRadialGradientFill

Creates a radial gradient fill to apply to the object using the selected radial gradient as the object background.

Syntax

expression.CreateRadialGradientFill(gradientStops);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
gradientStopsRequirednumber[]The array of gradient color stops measured in 1000th of percent.

Returns

ApiFill

Example

Fill a shape with a color that radiates outward from the center in a spreadsheet.

// How do I make a shape's background fade from one color to another in a circular pattern in a spreadsheet?

// Give a shape a circular color blend that transitions from the middle to the edges in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let gs1 = Api.CreateGradientStop(Api.RGB(255, 213, 191), 0);
let gs2 = Api.CreateGradientStop(Api.RGB(255, 111, 61), 100000);
let fill = Api.CreateRadialGradientFill([gs1, gs2]);
var stroke = Api.CreateStroke(0, Api.CreateNoFill());
worksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 1, 3 * 36000);