From d308a5cfd4a4aa2c811236e2ed125bff3bae3180 Mon Sep 17 00:00:00 2001 From: Michele Colombo Date: Sat, 24 Oct 2015 17:48:11 +0200 Subject: [PATCH] Changed Annotation.showarrow type to bool as Plotly api requires --- src/XPlot.Plotly/Graph.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XPlot.Plotly/Graph.fs b/src/XPlot.Plotly/Graph.fs index d1a476ae..2e250338 100644 --- a/src/XPlot.Plotly/Graph.fs +++ b/src/XPlot.Plotly/Graph.fs @@ -3791,7 +3791,7 @@ type Annotation() = let mutable _xref: string option = None let mutable _yref: string option = None let mutable _text: string option = None - let mutable _showarrow: string option = None + let mutable _showarrow: bool option = None let mutable _font: Font option = None let mutable _xanchor: string option = None let mutable _yanchor: string option = None