填充样式参考#

填充可以添加到 Matplotlib 中的大多数多边形,包括 barfill_betweencontourf 以及 Polygon 的子元素。它们目前在 PS、PDF、SVG、macosx 和 Agg 后端中受支持。WX 和 Cairo 后端目前不支持填充。

另请参阅 Contourf 填充 以获取使用 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)
hatch style reference

填充模式可以重复以增加密度。

fig, axs = plt.subplots(2, 5, layout='constrained', figsize=(6.4, 3.2))

hatches = ['//', '\\\\', '||', '--', '++', 'xx', 'oo', 'OO', '..', '**']

for ax, h in zip(axs.flat, hatches):
    hatches_plot(ax, h)
hatch style reference

填充模式可以组合以创建其他模式。

fig, axs = plt.subplots(2, 5, layout='constrained', figsize=(6.4, 3.2))

hatches = ['/o', '\\|', '|*', '-\\', '+o', 'x*', 'o-', 'O|', 'O.', '*-']

for ax, h in zip(axs.flat, hatches):
    hatches_plot(ax, h)
hatch style reference

参考文献

本示例演示了以下函数、方法、类和模块的使用情况

脚本的总运行时间:(0 分钟 1.248 秒)

由 Sphinx-Gallery 生成的图库