Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.measure
Commits
f2dae89e
Commit
f2dae89e
authored
May 01, 2018
by
Theophile GENTILHOMME
Browse files
Allow empty title
parent
1c6e5bca
Changes
1
Hide whitespace changes
Inline
Side-by-side
bob/measure/script/figure.py
View file @
f2dae89e
...
...
@@ -349,7 +349,7 @@ class PlotBase(MeasureBase):
title
+=
(
" (%s)"
%
self
.
_states
[
0
])
elif
self
.
_split
:
title
+=
(
" (%s)"
%
self
.
_states
[
i
])
mpl
.
title
(
title
)
mpl
.
title
(
title
if
self
.
_title
.
replace
(
' '
,
''
)
else
''
)
mpl
.
xlabel
(
self
.
_x_label
)
mpl
.
ylabel
(
self
.
_y_label
)
mpl
.
grid
(
True
,
color
=
self
.
_grid_color
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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