Re: Help
- To: mathgroup at smc.vnet.net
- Subject: [mg132752] Re: Help
- From: Matthias Bode <lvsaba at hotmail.com>
- Date: Thu, 22 May 2014 02:32:27 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
- References: <20140521081342.149126A38@smc.vnet.net>
Hola:
"I want to plot 2 points {1,1,1} and {2,2,2} using ListPointPlot3D and
Tooltip, labelling each point "a" and "b" respectively."
Please try:
a = {1, 1, 1};
b = {2, 2, 2};
plt01 = ListPointPlot3D[Tooltip[{a}, "a"]];
plt02 = ListPointPlot3D[Tooltip[{b}, "b"]];
Show[plt01, plt02]
Best regards,
MATTHIAS BODE
> From: reiser.paul at gmail.com
> Subject: Help
> To: mathgroup at smc.vnet.net
> Date: Wed, 21 May 2014 04:13:42 -0400
>
>
> I want to plot 2 points {1,1,1} and {2,2,2} using ListPointPlot3D and
> Tooltip, labelling each point "a" and "b" respectively.
>
> ListPointPlot3D[Tooltip[{{1, 1, 1}, {2, 2, 2}}, {"a", "b"}]] doesn't seem
> to work (it displays "{a,b}" at both points)
>
> Thanks for any help...
>
>
- References:
- ListPointPlot3D[Tooltip[]] Help
- From: reiser.paul@gmail.com
- ListPointPlot3D[Tooltip[]] Help