Constructor
new module:RadialGradient(positionDefinition, radius, colorStops)
Radial-gradient constructor
Parameters:
Name | Type | Description |
---|---|---|
positionDefinition | PositionDefinition | Center of the gradient |
radius | Number | Radius of the gradient |
colorStops | Object | Set of colors to go through (key is position [from 0 to 1], value is the color) |
Example
new RadialGradient(from, radius, { 0: "red", 1: "green" });