I've always used MS Excel to create my school schedules, and I've always been happy with the results.
Is there a similar GUI way to generate schedules/timetables in Mathematica or a third-party functionality (e.g. in a package) available??
My own…
I'm trying to draw a Grid of characters where some of the characters have Frame lines on 3 sides. For example:
+ +
x | x | x
+---+
x x x
x x x
That's something like a Grid[item = Table[x,{3},{3}]], except with item[[1,2]] =…
I have some elements in a Grid. I want to change their positions within that Grid. Can I swap their positions just by dragging cursor on to them?
For example
Grid[{{1, 2, 5, 7, 9}, {3, 4, 8, 4, 2}, {5, 12, 7, 3, 8}}]
I want to swap positions…
I always thought that Grid (and the underlying GridBox) and the general handling of tabular objects is a bit weird in Mathematica. One particularly annoying fact is that while one can set column widths explictly, the same cannot be done to row…
I am trying to set up a Grid with cells that span two rows and are centered on those rows, but I am having troubles with the sizing and, therefore, spacing of the elements. For illustration I can get something that has at least part of the layout…
Consider the following code:
Grid[Table[x, {4}, {7}], Background -> {4 -> LightRed}]
This highlights column 4:
Grid[Table[x, {4}, {7}], Background -> {None, {4 -> LightRed}}]
This highlights row 4:
How do you highlight an individual cell, say…
I am wanting to make a Pane scale to fit (if Spacings are zero) a Grid element.
Grid[{{x, x,
Framed[
Pane[x,
ImageSize -> {Scaled[1], Scaled[1]},
ImageMargins -> 0,
Alignment -> Center],
FrameMargins -> 0,
ImageMargins…
There is a way to align axis/picture in this kind of plot?
blocks = Table[
Graphics[
Plot[Sin[π i j x], {x, 0, 1},
PlotRange -> {{0, 1}, {-1, 1}},
Frame -> True,
FrameTicks -> {{If[j < 2, Automatic, None], None},
…
Why in this:
Grid[{{Item[Rotate["this is a long text example", Pi/2], ItemSize -> {2, 10}]}}, Frame -> True]
or this
Grid[{{Pane[Rotate["this is a long text example", Pi/2], {59, 300}]}}, Frame -> True]
the text length is still wrapped based on…
How can I stretch this Grid to the width of the encapsulating Panel (so that "right" floats on the right side? I want to achieve something along the lines of the menu at the top of the Documentation notebooks.
Panel[
Grid[
{{"left",…
I have a grid I've created with the first row set up as the title to the grid. The problem I'm having is that when the title is wider than the following rows need to be, Mathematica extends the final column of the lower rows to be wider. I'd really…
I was not able to figure out how can I add some space (margins) surrounding just the "a" and "b" strings of the following grid:
Grid[{{"a", "b"},{"c", "d"},{"e", "f"}}, Frame -> All]
How can I do this?
That is all:
How can I set the width of columns in a Grid in terms of pixels instead of 'ems'?
To be more precisely, I want to create a grid that is 330 pixels wide, with 3 columns being 110 pixels wide each of them.
This could be a…
I want to display a table like this:
And use Divider I can only get this so far
t=Table[x, {10}, {10}];
Grid[t,
Dividers -> {{{{True, False}}, {-1 -> False,
1 -> False}}, {{{True, False}}, {-1 -> False, 1 -> False}}}]
How can…