-
-
Notifications
You must be signed in to change notification settings - Fork 639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add 3_triangles support #1110
Comments
Unfortunately, that won't work. The 3 triangles type wasn't one of the original conditional format icon sets and as such it requires additional support code and additional XML elements in the output file. I implemented them for the Rust version so it should be a straightforward addition. |
Could you please inform me of the timeline for adding this support? |
No. Support timelines aren't usually a part of open-source software. It is a nontrivial change. |
Feature Request
import xlsxwriter
workbook = xlsxwriter.Workbook('test.xlsx')
worksheet = workbook.add_worksheet()
data = [1, 0, -1]
worksheet.write_column('A1', data)
worksheet.conditional_format(f"A1:A3", {
'type': 'icon_set',
'icon_style': '3_triangles',
'icons': [
{'criteria': '>', 'type': 'number', 'value': 0},
{'criteria': '=', 'type': 'number', 'value': 0},
{'criteria': '<', 'type': 'number', 'value': 0},
],
})
workbook.close()
The text was updated successfully, but these errors were encountered: