Skip to content

Commit b6bf72e

Browse files
Update examples/gallery/symbols/bars.py
Co-authored-by: Dongdong Tian <seisman.info@gmail.com>
1 parent 2cc5818 commit b6bf72e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/gallery/symbols/bars.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,17 @@
1414
nrows=1, ncols=2, subsize=("8c", "4c"), frame=["ag", "WSne"], sharey=True
1515
):
1616

17-
fig.basemap(region=[0, 4, 0, 3], panel=True, frame="+tvertical")
18-
fig.basemap(region=[0, 4, 0, 3], panel=True, frame="+thorizontal")
19-
2017
pen = "1.5p"
2118
with fig.set_panel(panel=0):
2219
color = "skyblue"
20+
fig.basemap(region=[0, 4, 0, 3], frame="+tvertical")
2321
fig.plot(x=1, y=2, style="b0.5c", color=color, pen=pen)
2422
fig.plot(x=2, y=2.5, style="b1c", color=color, pen=pen)
2523
fig.plot(x=3, y=2.5, style="b0.75c+b1", color=color, pen=pen)
2624

2725
with fig.set_panel(panel=1):
2826
color = "tomato"
27+
fig.basemap(region=[0, 4, 0, 3], frame="+thorizontal")
2928
fig.plot(x=1.5, y=0.5, style="B0.75c", color=color, pen=pen)
3029
fig.plot(x=3, y=1.5, style="B1c", color=color, pen=pen)
3130
fig.plot(x=3.5, y=2.5, style="B0.5c+b2", color=color, pen=pen)

0 commit comments

Comments
 (0)