0

I am to creating venn diagram using matplotlib-venn. I am able to generate the graphs. Is there any possible way to create venn diagrams with textures like matplotlib bar-chart/pie-chart with textures?

1 Answers1

0

This should get you started:

v = venn3(range(1,8))
p = v.get_patch_by_id('110')
p.set_hatch('\\\\')
p.set_edgecolor('black')
p.set_alpha(1.0)
KT.
  • 10,815
  • 4
  • 47
  • 71