Skip to content

Commit 29f1c2f

Browse files
Datetime tutorial: Change symbol usde in first code example to fix failing under Windows (#3121)
1 parent 6fd4a00 commit 29f1c2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/tutorials/advanced/date_time_charts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# data points stored in the list ``x``. Additionally, dates are passed into
3030
# the ``region`` parameter in the format ``[x_start, x_end, y_start, y_end]``,
3131
# where the date range is plotted on the x-axis. An additional notable
32-
# parameter is ``style``, where it's specified that data points are to be
33-
# plotted in an **X** shape with a size of 0.3 centimeters.
32+
# parameter is ``style``, where it's specified that data points are plotted
33+
# as circles with a diameter of 0.3 centimeters.
3434

3535
x = [
3636
datetime.date(2010, 6, 1),
@@ -47,7 +47,7 @@
4747
frame=["WSen", "afg"],
4848
x=x,
4949
y=y,
50-
style="x0.3c",
50+
style="c0.3c",
5151
pen="1p",
5252
)
5353
fig.show()

0 commit comments

Comments
 (0)