[matplotlib-devel] scatter and alpha

2008-12-12 Thread Gregor Thalhammer
I found that in scatter plots the alpha values given by individual entries in the color list are ignored. Here an example that shows different combinations of color and alpha arguments: x = [1,2,3] y = array([1,1,1]) c = [[1,0,0, 0.0], [1,0,0, 0.5], [1,0,0, 1.0]] scatter(x, y, s = 200

Re: [matplotlib-devel] scatter and alpha settings

2008-10-09 Thread Eric Firing
Gregor Thalhammer wrote: > Dear developers, > > in matplotlib 0.98.3 I discoverd that in scatter individual alpha > settings (by giving a list of rgba values) are ignered. Here an example > that show this behaviour: All points show the same alpha value as given > by the alpha keyword argument.

[matplotlib-devel] scatter and alpha settings

2008-10-06 Thread Gregor Thalhammer
Dear developers, in matplotlib 0.98.3 I discoverd that in scatter individual alpha settings (by giving a list of rgba values) are ignered. Here an example that show this behaviour: All points show the same alpha value as given by the alpha keyword argument. (Omitting it equals to the setting al