I want to create a dashboard using Pygal on python 2.7 (Several plots in the same window) but the later doesn't have the subplot function, Is there a solution, without using bokeh or plotly?
Example on Matplotlib:
fig, axes = plt.subplots(ncols=4, nrows=5, figsize=(35,20))
for ax in axes.flatten():
ax.plot([2,3,5,1])
plt.show()
Is there something like this on Pygal?