Tagged Questions
11
votes
1answer
115 views
Upon PDF export, edgeless rectangles do not tile perfectly, and corners may be cut. Is this a bug?
Exporting the following as a PDF file
Graphics[{
{Red, Rectangle[{0, 0}, {1, 1}]},
{Green, Rectangle[{1, 0}, {2, 1}]}
}]
does not produce perfectly tiled ...
3
votes
1answer
99 views
Something wrong with RectangleChart and Tooltip?
Currently I'm working on a diagram showing the merit order of power plants in the Netherlands. On the horizontal axes you see the cumulative power and on the vertical axes you see the costs per MWh. ...
9
votes
3answers
158 views
“Stacked” BarChart with BarOrigin $\to$ Top makes y-tick marks negative
When BarChart layout is "Stacked", setting BarOrigin -> Top makes the y-axis tick marks ...
7
votes
0answers
110 views
PlotMarkers doesn't inherit PlotStyle when Graphics[a] isn't a List[]
Could somebody explain, why Circle does not inherit the PlotStyle of the plot when used as ...
7
votes
1answer
171 views
How can I display a multigraph with different colored edges?
I'm new to Mathematica(version 9) and I'm trying to display a multigraph with different colored edges. Here's my code so far:
...
9
votes
2answers
211 views
How can I prevent ColorFunction from disabling antialiasing in graphics?
When I use ColorFunction, the appearance of my plots is ruined, changing from this
which has the normal smooth lines and antialiased fonts, to this
in which ...
10
votes
1answer
173 views
Why do Arrowheads interfere with ImagePadding?
In a recent posting, Belisarius solved a problem related to the display of arrows on the x and y axes by setting ImagePadding->None.
My question is: why do the ...
5
votes
2answers
196 views
Create self-contained plots when Ticks or FrameTicks require external functions
Let's say I define tick marks for a plot in a separate function outside of the plot:
...
14
votes
3answers
357 views
Memory Leak in Frontend - anyone know a workaround?
When using Rasterize on a Graphics expression composed of many differently coloured Graphics objects memory is allocated in the frontend which is then not released or reused when a similar graphic ...
12
votes
1answer
217 views
Effects of single-point and multi-point calls of Point on plot range
Several Graphics primitives are listable. For instance, Point accepts lists of coordinates so that multiple calls to Point are ...