首页 > 解决方案 > 如何用 triplot 指定边缘颜色

问题描述

在以下使用 matplotlib.triplot 的示例中,我如何指定边缘颜色以具有颜色,例如 0xFFAC67?

import matplotlib.pyplot as plt
import matplotlib.tri as tri
import numpy as np
xy = np.asarray([ [0.2, 0.1], [0.9, -0.1], [1.2, 1.29] ])
x = np.degrees(xy[:, 0])
y = np.degrees(xy[:, 1])
triangles = np.asarray([ [0, 1,  2] ])
mesh = tri.Triangulation( x, y, triangles )
plt.figure()
plt.gca().set_aspect('equal')
plt.triplot( mesh, 'g-', lw=1.0 )
plt.show()

标签: matplotlibtriplot

解决方案


您可以使用参数指定颜色c。您指定的颜色无效,但替换0x#如下作品

plt.gca().set_aspect('equal')
plt.triplot(mesh, '-', lw=1.0, c='#FFAC67')
plt.show()

在此处输入图像描述


推荐阅读