I started working with python a couple of weeks ago and thus my knowledge of python is low.
I wish to plot a bar plot with some continuous data, but do not want to fill it with any color. I want to see only the final edges like a line histogram. I can not use white color because I will be overlapping different bar plots with errorbar plots in the same canvas. Any clue on how should I change it to a line histogram and set its line color?
For x-axis, I have used numpy.array. For y-axis, the height I need is in numpy.histogram form.
I am using following method:
import matplotlib.pyplot as plt
plt.bar(np_array_bins, np_histogram,width=binwidth,
label='data', alpha=0.5, edgecolor = 'red',
color = 'green', linewidth=0.1)
I can't put the real data online but what I have is something like 
Neglect the data shown. I am concerned only about the style of the plot. Thanks!



import matplotlib.pyplot as plt.