Say I have a pandas dataframe and I plot it with matplotlib via the pandas built-in function plot:
mydata = list(zip([1, 2, 3], [4, 5, 6]))
dataframe = pandas.DataFrame(mydata)
barchart = dataframe.plot(kind = 'bar')
How do I access the color of the bars?
More generally, how do I access all the attributes?
E.g. I can get the background color with barchart.get_axis_bgcolor() and I can set it to grey with barchart.set_axis_bgcolor('grey'), but what about all the other attributes?