When I use output_backend='svg' and a hatch_pattern, the html file never loads (as if it was too many points). The same is with exporting.
f = figure(width=1000, height=500, output_backend='svg')
f.varea(x=[0, 100], y1=[0, 0], y2=[1, 1], alpha=0,
hatch_pattern="/", hatch_scale=150)
show(f) # or export_svgs(f, "some.svg") or export_png(f, "some.png")
When I use output_backend='svg' and a hatch_pattern, the html file never loads (as if it was too many points). The same is with exporting.
Example: