Optional
colorArray of colors stops to use in the gradient
Optional
endThe end point of the gradient. This point defines where the gradient ends. It is represented as a PointData object containing x and y coordinates. The coordinates are in local space by default (0-1), but can be in global space if specified.
Optional
startThe start point of the gradient. This point defines where the gradient begins. It is represented as a PointData object containing x and y coordinates. The coordinates are in local space by default (0-1), but can be in global space if specified.
Optional
textureThe size of the texture to use for the gradient - this is for advanced usage. The texture size does not need to match the size of the object being drawn. Due to GPU interpolation, gradient textures can be relatively small! Consider using a larger texture size if your gradient has a lot of very tight color steps
Optional
textureWhether coordinates are 'global' or 'local'
Optional
typeThe type of gradient. Must be 'linear' for linear gradients.
Optional
wrapThe wrap mode of the gradient. This can be 'clamp-to-edge' or 'repeat'.
Options specific to linear gradients. A linear gradient creates a smooth transition between colors along a straight line defined by start and end points.