I'm developing a plot of proportionally sized arrows, and have a workflow for size, direction and arrow-head size, but there are a couple of issues with the arrowheads: 1. they have rounded line-join and 2. they don't close (see bottom right corner) even when type='closed'
.
require(ggplot2)
require(grid)
d = data.frame(x = 1:10, y = 0, size = 1:10)
ggplot(d, aes(x, y, size = size)) +
geom_segment(aes(xend = x, yend = y + size),
arrow = arrow(length = unit(d$size, "mm"), type='closed')) +
scale_size(range = c(2, 4))
Arrows are based on grid graphics, but I cannot figure out how to specify the setting. get.gpar()
yields:
$lineend
[1] "round"
$linejoin
[1] "round"
but gpar(linejoin = 'mitre', lineend = 'butt')
does not change this. Is there any way to change these settings? Thanks in advance.
Edit
Plot image including grid.segments arrow added:
Found a solution (credit to @baptiste for the pointer). If you use the geom_segment source code in github and make the following alterations you will end up with lovely pointy arrowheads:
1 require(proto)
2 add ggplot:::
in first line of GeomSegment (currently line 51) as follows:
GeomSegment <- proto(ggplot:::Geom, {
3 add argument linejoin = 'mitre'
to gpar
in segmentsGrob
(line 23):
lwd=size * .pt, lty=linetype, lineend = lineend, linejoin = 'mitre'),
Run both functions and you'll end up with:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With