自定义虚线样式#

线条的虚线是通过虚线序列控制的。可以使用Line2D.set_dashes.

破折号序列是以点为单位的一系列开/关长度,例如 将是由 1pt 空格分隔的 3pt 长线。[3, 1]

一些函数,如Axes.plot支持将 Line 属性作为关键字参数传递。在这种情况下,您可以在创建线条时设置破折号。

注意:也可以通过 property_cycle配置破折号样式,方法是使用关键字dashes将 破折号序列列表传递给循环器。这在此示例中未显示。

也可以使用相关方法 ( set_dash_capstyle, set_dash_joinstyle, set_gapcolor) 或通过绘图函数传递属性来设置破折号的其他属性。

线演示破折号控制
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 500)
y = np.sin(x)

plt.rc('lines', linewidth=2.5)
fig, ax = plt.subplots()

# Using set_dashes() and set_capstyle() to modify dashing of an existing line.
line1, = ax.plot(x, y, label='Using set_dashes() and set_dash_capstyle()')
line1.set_dashes([2, 2, 10, 2])  # 2pt line, 2pt break, 10pt line, 2pt break.
line1.set_dash_capstyle('round')

# Using plot(..., dashes=...) to set the dashing when creating a line.
line2, = ax.plot(x, y - 0.2, dashes=[6, 2], label='Using the dashes parameter')

# Using plot(..., dashes=..., gapcolor=...) to set the dashing and
# alternating color when creating a line.
line3, = ax.plot(x, y - 0.4, dashes=[4, 4], gapcolor='tab:pink',
                 label='Using the dashes and gapcolor parameters')

ax.legend(handlelength=4)
plt.show()

由 Sphinx-Gallery 生成的画廊