我需要降低使用matplotlib制作的栏中的舱口密度。 我添加阴影的方式:
kwargs = {'hatch':'|'}
rects2 = ax.bar(theta, day7, width,fill=False, align='edge', alpha=1, **kwargs)
kwargs = {'hatch':'-'}
rects1 = ax.bar(theta, day1, width,fill=False, align='edge', alpha=1, **kwargs)
我知道您可以通过在模式中添加更多字符来增加密度,但是如何降低密度?!
答案 0 :(得分:8)
这是一个完整的黑客攻击,但它应该适用于您的场景。
基本上,您可以定义一个新的填充图案,输入字符串越长,密度越小。我已经开始为你调整HorizontalHatch
模式(注意使用下划线字符):
class CustomHorizontalHatch(matplotlib.hatch.HorizontalHatch):
def __init__(self, hatch, density):
char_count = hatch.count('_')
if char_count > 0:
self.num_lines = int((1.0 / char_count) * density)
else:
self.num_lines = 0
self.num_vertices = self.num_lines * 2
然后,您必须将其添加到可用的填充图案列表中:
matplotlib.hatch._hatch_types.append(CustomHorizontalHatch)
在您的绘图代码中,您现在可以使用已定义的模式:
kwargs = {'hatch':'_'} # same as '-'
rects2 = ax.bar(theta, day7, width,fill=False, align='edge', alpha=1, **kwargs)
kwargs = {'hatch':'__'} # less dense version
rects1 = ax.bar(theta, day1, width,fill=False, align='edge', alpha=1, **kwargs)
请记住,这不是一个非常优雅的解决方案,可能会在将来的版本中随时中断。此外,我的模式代码也是一个快速的黑客,你可能想要改进它。我继承自HorizontalHatch
,但为了更灵活,您可以在HatchPatternBase
上继承。