How do I move candles further apart in matplotlib? I currently have code that produces the following:
The boxes and labels shown are squashed together and difficult to read.
My plot function is as follows:
box1 = ax1.boxplot(to_build, positions=np.arange(len(to_build)) - 0.2, labels=labelList, notch=False,
patch_artist=True,
widths=0.3, medianprops=dict(color='white'),
boxprops=dict(facecolor=c1, color=c1),
capprops=dict(color=c1),
whiskerprops=dict(color=c1),
flierprops=dict(color=c1, markeredgecolor=c1),
)
How can I change it to increase spacing between plotted points?