Re: how to scale text to a bounding rectangle?
- To: mathgroup at smc.vnet.net
- Subject: [mg110461] Re: how to scale text to a bounding rectangle?
- From: Helen Read <hpr at together.net>
- Date: Sat, 19 Jun 2010 07:48:51 -0400 (EDT)
- References: <hvcds8$5h9$1@smc.vnet.net>
- Reply-to: Helen Read <helen.read at uvm.edu>
On 6/17/2010 2:03 AM, Michael wrote: > The problem with both of these solutions is that I need the bounding > rectangle to be in a Graphics[] expression because I'm creating several > of these text filled boxes at arbitrary offsets. I'm trying to create > something similar to Graph[] (hopefully using it's embedding functions) > but instead of vertexes I want to create collections of boxes containing > text. However Mathematica seems to render text independently of the > coordinate range of the graphic. For example, these two expressions > produce identical output: Have you looked at using GraphPlot with a VertexRenderingFunction? For example: GraphPlot[{"Hello" -> "World", "World" -> "Planet", "World" -> "Earth", "Hello" -> "Earth"}, VertexRenderingFunction -> ({White, EdgeForm[{Black, Thick}], Disk[#, {.2, .1}], Black, Text[#2, #1]} &)] -- Helen Read University of Vermont