DataBarRule {xlcharts} | R Documentation |
DataBarRule
Description
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
Usage
DataBarRule(
start_type = NULL,
start_value = NULL,
end_type = NULL,
end_value = NULL,
color = NULL,
showValue = NULL,
minLength = NULL,
maxLength = NULL,
...
)
Arguments
start_type |
start_type |
start_value |
start_value |
end_type |
end_type |
end_value |
end_value |
color |
color |
showValue |
showValue |
minLength |
minLength |
maxLength |
maxLength |
... |
Additional arguments, i.e. kwargs |
Value
An openpyxl Python object.
Examples
## Not run:
DataBarRule(start_type='percentile', start_value=10, end_type='percentile', end_value='90',
color="FF638EC6", showValue= NULL, minLength=NULL, maxLength=NULL)
## End(Not run)
[Package xlcharts version 0.0.2 Index]