Re: ListPlot with little plus signs instead?
- To: mathgroup at smc.vnet.net
- Subject: [mg8161] Re: [mg8123] ListPlot with little plus signs instead?
- From: Allan Hayes <hay at haystack.demon.co.uk>
- Date: Sat, 16 Aug 1997 11:51:05 -0400
- Sender: owner-wri-mathgroup at wolfram.com
Mark Evans <evans at gte.net> in [mg8123] ListPlot with little plus signs instead? writes > How can one call ListPlot in such a way that the points are shown > as small plus signs instead of circular blobs? Mark: Three ideas: data =Table[{x,Random[]},{x,10}]; 1. Show[Graphics[Text["+",#]&/@data]] 2. lp =ListPlot[data,PlotStyle->Hue[0]] Show[lp/.Point[p_]:> Text["+",p] ] 3. <<Graphics`MultipleListPlot` MultipleListPlot[data, SymbolShape->MakeSymbol[ {Line[{{-1,0},{1,0}}],Line[{{0,-1},{0,1}}]}], SymbolStyle ->{{Hue[0],Thickness[.001]}} ] Allan Allan Hayes hay at haystack.demon.co.uk http://www.haystack.demon.co.uk/training.html voice:+44 (0)116 2714198 fax: +44 (0)116 2718642 Leicester, UK