Draw y-axis
spiral_yaxis(
side = c("both", "start", "end"),
at = NULL,
labels = TRUE,
ticks_length = unit(2, "bigpts"),
ticks_gp = gpar(),
labels_gp = gpar(fontsize = 6),
track_index = current_track_index()
)
On which side of the spiral the y-axis is drawn? "start" means the inside of the spiral and "end" means the outside of the spiral.
Note if reverse
was set to TRUE
in spiral_initialize()
, then "start" corresponds to the outside of the spiral.
Break points.
Corresponding labels for the break points.
Length of the tick. Value should be a grid::unit()
object.
Graphical parameters for ticks.
Graphical parameters for labels.
Index of the track.
No value is returned.
spiral_initialize(); spiral_track(height = 0.8)
spiral_yaxis("start")
spiral_yaxis("end", at = c(0, 0.25, 0.5, 0.75, 1), labels = letters[1:5])