Re: Grid Divider Style With Background Colors
- To: mathgroup at smc.vnet.net
- Subject: [mg120489] Re: Grid Divider Style With Background Colors
- From: Heike Gramberg <heike.gramberg at gmail.com>
- Date: Tue, 26 Jul 2011 07:05:14 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201107251128.HAA25473@smc.vnet.net>
You could do something like With[{gap = 1, elemWidth=3, h = 8, w = 7}, mat = RandomInteger[10, {h, w}]; colours = Table[Blend[{Lighter[Blue], Pink}, j/w], {i, h}, {j, w}]; Framed[Grid[ MapThread[ Framed[Pane[#1, Scaled[1]], ImageMargins -> gap, Background -> #2] &, {mat, colours}, 2], Spacings -> {0, 0}, ItemSize -> elemWidth], FrameMargins -> gap]] elemWidth is the width of the elements in the Grid and gap the distance between the lines. Heike On 25 Jul 2011, at 12:28, Don wrote: > Mathematica permits divider lines between rows and columns in a table > (grid) such > as this example from the documentation: > > Grid[Table[x, {4}, {11}], Dividers -> {{{{True, False}}, -1 -> True}, > False}] > > But, the dividers are single lines only. > > Sometimes double line dividers are desired > as shown in this table on the Web: > > http://www.assetcorrelation.com/user/correlations/90 > > Notice that the background color for an item is only within > the inside line of a double line divider. > > Is there any way to produce (a) this kind of divider (double line) > and (b) with background colors for specific items that don't cross > the inside line of the double line divider? > > Thank you in advance. > > Don >
- References:
- Grid Divider Style With Background Colors
- From: Don <donabc@comcast.net>
- Grid Divider Style With Background Colors