GradientFill | R Documentation |
Fill areas with gradient
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
GradientFill(
type = "linear",
degree = 0L,
left = 0L,
right = 0L,
top = 0L,
bottom = 0L,
stop = list(),
...
)
type |
type |
degree |
degree |
left |
left |
right |
right |
top |
top |
bottom |
bottom |
stop |
stop |
... |
Additional arguments, i.e. kwargs. |
Two types of gradient fill are supported: - A type='linear' gradient interpolates colours between a set of specified Stops, across the length of an area. The gradient is left-to-right by default, but this orientation can be modified with the degree attribute. A list of Colors can be provided instead and they will be positioned with equal distance between them. - A type='path' gradient applies a linear gradient from each edge of the area. Attributes top, right, bottom, left specify the extent of fill from the respective borders. Thus top="0.2" will fill the top 20
An openpyxl Python object.
## Not run:
GradientFill()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.