MathGroup Archive 2014

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Help

  • To: mathgroup at smc.vnet.net
  • Subject: [mg132751] Re: Help
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Thu, 22 May 2014 02:32:07 -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>

I recommend that you use Graphics3D and build your own.


pts = {{1, 1, 1}, {2, 2, 2}};


labels = {"a", "b"};


Graphics3D[{
  AbsolutePointSize[8],
  Red,
  Tooltip @@@
   Transpose@
    {Point /@ pts, labels}},
 Axes -> True,
 BoxRatios -> {1, 1, 0.4}]



Bob Hanlon


On Wed, May 21, 2014 at 4:13 AM, <reiser.paul at gmail.com> wrote:

>
> 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...
>
>
>




  • Prev by Date: Re: packages...
  • Next by Date: Re: Help
  • Previous by thread: ListPointPlot3D[Tooltip[]] Help
  • Next by thread: Re: Help