Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc6a1ba

Browse files
committed
Fix docs
1 parent f6110d5 commit fc6a1ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/users/next_whats_new/histogram_vectorized_parameters.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ be achieved by passing a list of colors to the ``color`` parameter.
2929
labels = ["Data 1", "Data 2", "Data 3"]
3030

3131
ax1.hist([data1, data2, data3], bins=range(17), histtype="barstacked",
32-
edgecolor=["red", "green", "blue"], linewidth=[1, 1.5, 2])
32+
edgecolor=["red", "green", "blue"], linewidth=[1, 1.5, 2])
3333
ax1.set_title("Different linewidths")
3434
ax1.legend(labels, prop={"size": 8})
3535

3636
ax2.hist([data1, data2, data3], bins=range(17), histtype="barstacked",
37-
edgecolor=["red", "green", "blue"], hatch=["/", ".", "*"])
37+
edgecolor=["red", "green", "blue"], hatch=["/", ".", "*"])
3838
ax2.set_title("Different hatch patterns")
3939
ax2.legend(labels, prop={"size": 8})
4040

4141
ax3.hist([data1, data2, data3], bins=range(17), histtype="barstacked",
42-
edgecolor=["red", "green", "blue"], linestyle=["--", "-.", ":"])
42+
edgecolor=["red", "green", "blue"], linestyle=["--", "-.", ":"])
4343
ax3.set_title("Different linestyles")
4444
ax3.legend(labels, prop={"size": 8})
4545

0 commit comments

Comments
 (0)