Re: [Matplotlib-users] how to get the properties for elements in a collection?

2009-08-18 Thread Jae-Joon Lee
See below for available public methods. http://matplotlib.sourceforge.net/api/collections_api.html#matplotlib.collections.Collection -JJ On Tue, Aug 18, 2009 at 6:16 PM, Jae-Joon Leelee.j.j...@gmail.com wrote: sct1 = axes.scatter(x,y, c=some_list, cmap=plt.get_cmap(colmap)) colors =

[Matplotlib-users] how to get the properties for elements in a collection?

2009-08-17 Thread Carlos Grohmann
Hi, I have a collection, which is a scatter plot, and I want to iterate through all the elements in this collection and retrieve their properties, like facecolor. the scatterplot is created like this: axes.scatter(x,y, c=some_list, cmap=plt.get_cmap(colmap)) many thanks -- Carlos Henrique