Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
openpyxl
openpyxl
Commits
e1a3eac34bd4
Commit
b5b663ab
authored
Feb 06, 2018
by
CharlieC
Browse files
Allow an empty axis to be used (z-axis is optional on 3-d charts)
--HG-- branch : 2.5
parent
f84d93f78a1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
openpyxl/chart/plotarea.py
View file @
e1a3eac3
...
...
@@ -153,9 +153,7 @@ class PlotArea(Serialisable):
continue
for
axId
in
chart
.
axId
:
if
not
axId
:
continue
axis
=
axes
[
axId
]
axis
=
axes
.
get
(
axId
)
if
axis
.
tagname
in
(
"catAx"
,
"dateAx"
):
chart
.
x_axis
=
axis
elif
axis
.
tagname
==
"valAx"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment