注意
转到结尾以下载完整的示例代码。
阴影线样式参考#
阴影线可以添加到 Matplotlib 中的大多数多边形,包括bar
、fill_between
、contourf
和Polygon
的子级。当前在 PS、PDF、SVG、macosx 和 Agg 后端中支持它们。WX 和 Cairo 后端目前不支持阴影线。
另请参阅填充等高线的阴影线,了解使用contourf
的示例,以及阴影线演示,了解更多用法示例。
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle
fig, axs = plt.subplots(2, 5, layout='constrained', figsize=(6.4, 3.2))
hatches = ['/', '\\', '|', '-', '+', 'x', 'o', 'O', '.', '*']
def hatches_plot(ax, h):
ax.add_patch(Rectangle((0, 0), 2, 2, fill=False, hatch=h))
ax.text(1, -0.5, f"' {h} '", size=15, ha="center")
ax.axis('equal')
ax.axis('off')
for ax, h in zip(axs.flat, hatches):
hatches_plot(ax, h)
可以重复阴影线图案以增加密度。
可以组合阴影线图案以创建其他图案。
参考
本示例中显示了以下函数、方法、类和模块的使用
脚本的总运行时间: (0 分钟 1.841 秒)