Re: Grid Dividers
- To: mathgroup at smc.vnet.net
- Subject: [mg106538] Re: Grid Dividers
- From: dh <dh at metrohm.com>
- Date: Fri, 15 Jan 2010 03:22:31 -0500 (EST)
- References: <himsnh$j9f$1@smc.vnet.net>
Hi John, instead of specifying all dividers separately, you may use Frame->All to set all and the eliminate the single one: Grid[{{a, b, c}, {d, e, f}, {g, h, i}}, Frame -> All, Dividers -> {{}, {3 -> False}}] Daniel John wrote: > My method of inserting dividers in a grid is crude: > > Grid[{{a, b, c}, {d, e, f}, {g, h, i}}, > Dividers -> {{True, True, True, True}, {True, True, False, True}}] > > There must be a better way. > > John >