From 2e172c942512c8ffc3f6a641de78520aa0a5f3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Foidl?= Date: Thu, 12 Oct 2017 00:49:41 +0200 Subject: [PATCH] plotly.js added side and overlaying, allowing multiple y-axis (#20467) Values according official documentation. --- types/plotly.js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/plotly.js/index.d.ts b/types/plotly.js/index.d.ts index 948623f137..863daf8085 100644 --- a/types/plotly.js/index.d.ts +++ b/types/plotly.js/index.d.ts @@ -157,6 +157,8 @@ export interface Axis { autotick: boolean; zeroline: boolean; autorange: boolean | 'reversed'; + side: "top" | "bottom" | "left" | "right"; + overlaying: "free" | "/^x([2-9]|[1-9][0-9]+)?$/" | "/^y([2-9]|[1-9][0-9]+)?$/"; } export interface ShapeLine {