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
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| gradientStops | Required | number[] | The array of gradient color stops measured in 1000th of percent. |
Returns
Example
Apply a radial gradient that fades from one color to another on a shape in a document.
// How do I fill a shape with a color that radiates outward from the center in a document?
// Give a shape a circular color transition by setting gradient stops for the fill in a document.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
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]);
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = Api.CreateShape("rect", 5930900, 395605, fill, stroke);
paragraph.AddDrawing(shape);