From e19e25473ce22407aa08a866ae888489eef41e40 Mon Sep 17 00:00:00 2001 From: Andrew Palugniok Date: Sun, 11 Feb 2018 10:36:12 +0000 Subject: [PATCH] Fix misplaced Plotly annotations. --- src/backends/plotly.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 92a25809..0330e149 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -147,7 +147,7 @@ function plotly_annotation_dict(x, y, val; xref="paper", yref="paper") :text => val, :xref => xref, :x => x, - :yref => xref, + :yref => yref, :y => y, :showarrow => false, )