From c9d595fd927198480450f1b8cffdf364c50c0cf1 Mon Sep 17 00:00:00 2001 From: Zhanibek Date: Tue, 9 Jun 2020 15:40:34 +0900 Subject: [PATCH] todo additional legend positions --- 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 810b72e3..33148bcf 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -345,7 +345,7 @@ function plotly_legend_pos(pos::Symbol) bottomleft = (coords = [xleft, ybot], xanchor = "left", yanchor = "bottom"), bottomright = (coords = [1.0, ybot], xanchor = "right", yanchor = "bottom"), topright = (coords = [1.0, 1.0], xanchor = "right", yanchor = "top"), - topleft = (coords = [xleft, 1.0], xanchor = "left", yanchor = "top"), + topleft = (coords = [xleft, 1.0], xanchor = "left", yanchor = "top"), #TODO implement outerright, outertopleft, ... default = (coords = [1.02, 1.0], xanchor = "auto", yanchor = "auto") )