From 1111000217396f9bae5dd2c3db4e3b95156c73b0 Mon Sep 17 00:00:00 2001 From: Sebastian Pech Date: Thu, 2 Feb 2017 17:39:34 +0100 Subject: [PATCH] Add support for ticks rotation --- src/backends/pgfplots.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backends/pgfplots.jl b/src/backends/pgfplots.jl index c9bd9fba..c45f9157 100644 --- a/src/backends/pgfplots.jl +++ b/src/backends/pgfplots.jl @@ -225,6 +225,9 @@ function pgf_axis(sp::Subplot, letter) # axis guide kw[Symbol(letter,:label)] = axis[:guide] + # ticks + push!(style, "$(letter)ticklabel style={rotate = $(axis[:rotation])}") + # flip/reverse? axis[:flip] && push!(style, "$letter dir=reverse")