|
From: Manuel M. <mm...@as...> - 2008-08-04 09:48:55
|
stuartornum wrote: > Hi, > > I am just playing around with different shapes and colours at the moment, I > have managed the "standard" colours like this: > > plot(Time, Value, 'r.') > > Which obviously prints a red dot. > > However how do use the hex colour map with the ".", I have tried: > > plot(Time, Value, '#330066.') > plot(Time, Value, '#330066,.') > plot(Time, Value, '#330066' '.') > plot(Time, Value, '#330066', '.') > > Not quite sure on the syntax. > Use the named kwarg "linestyle": plot(Time, Value, '#330066', linestyle='.') |