The legs are called whiskers and you can control them by setting the parameter whis
in the boxplot call. In your case you probably want to set it to 'range'
ax.boxplot(Data1.values(), whis='range')
as stated in the documentation:
whis : float, sequence, or string (default = 1.5)
As a float, determines the reach of the whiskers to the beyond the first and third quartiles. In other words, where IQR is the interquartile range (Q3-Q1), the upper whisker will extend to last datum less than Q3 + whis* IQR). Similarly, the lower whisker will extend to the first datum greater than Q1 - whis* IQR. Beyond the whiskers, data are considered outliers and are plotted as individual points. Set this to an unreasonably high value to force the whiskers to show the min and max values. Alternatively, set this to an ascending sequence of percentile (e.g., [5, 95]) to set the whiskers at specific percentiles of the data. Finally, whis can be the string 'range' to force the whiskers to the min and max of the data.
Note that you don't plot boxplots of your actual data, but a boxplot of the summary statistics you provide. This is usually different. If you want to use your summary statistics to plot a boxplot of the original data have a look at this example and the matplotlib method bxp
.