Re: Dividers formatting in Grid
- To: mathgroup at smc.vnet.net
- Subject: [mg83159] Re: Dividers formatting in Grid
- From: Helen Read <hpr at together.net>
- Date: Tue, 13 Nov 2007 03:41:33 -0500 (EST)
- References: <fh9920$aue$1@smc.vnet.net>
- Reply-to: HPR <read at math.uvm.edu>
Murray Eisenberg wrote: > In the following Grid, why are the two vertical dividers not red? > > Grid[Join[{{"First", "Second", "Third"}}, Partition[Range[6], 3]], > Dividers -> {{None, 2 -> Red, 3 -> Red}, {2 -> Blue}}] Take out None and it works. Grid[Join[{{"First", "Second", "Third"}}, Partition[Range[6], 3]], Dividers -> {{2 -> Red, 3 -> Red}, {2 -> Blue}}] -- Helen Read University of Vermont
- Follow-Ups:
- Re: Re: Dividers formatting in Grid
- From: Murray Eisenberg <murray@math.umass.edu>
- Re: Re: Dividers formatting in Grid