Re: Tooltips and PlotMarkers
- To: mathgroup at smc.vnet.net
- Subject: [mg85427] Re: Tooltips and PlotMarkers
- From: yatesd at mac.com
- Date: Sun, 10 Feb 2008 05:16:15 -0500 (EST)
- References: <fobjqi$mr6$1@smc.vnet.net> <foc38o$507$1@smc.vnet.net>
Something like this?
Graphics[
MapThread[
Tooltip[Text[#1, {#3, #2}], #2] &,
{mydata[[2]], mydata[[1]], Range[Length[mydata[[1]]]]}
],
AspectRatio -> 1, PlotRange -> {{0, 7}, All},
Frame -> {False, True, False, False}
]
Regards,
Derek