-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathDefaults.fs
More file actions
51 lines (41 loc) · 1.73 KB
/
Defaults.fs
File metadata and controls
51 lines (41 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
namespace Plotly.NET
open Plotly.NET
open Plotly.NET.LayoutObjects
5D26
open DynamicObj
open System.Runtime.InteropServices
open Giraffe.ViewEngine
/// Contains mutable global default values.
///
/// Changing these values will apply the default values to all consecutive Chart generations.
module Defaults =
/// The default width of the chart container in generated html files. Default: 600 (px)
let mutable DefaultWidth = 600
/// The default height of the chart container in generated html files. Default: 600 (px)
let mutable DefaultHeight = 600
/// The default chart config. Default: Config.init (Responsive = true)
let mutable DefaultConfig =
Config.init (Responsive = true)
let mutable DefaultDisplayOptions =
DisplayOptions.init (
DocumentTitle = "Plotly.NET Datavisualization",
DocumentDescription = "A plotly.js graph generated with Plotly.NET",
DocumentCharset = "UTF-8",
DocumentFavicon =
(link [
_id "favicon"
_rel "shortcut icon"
_type "image/png"
_href $"data:image/png;base64,{Globals.LOGO_BASE64}"
]),
PlotlyJSReference = CDN $"https://cdn.plot.ly/plotly-{Globals.PLOTLYJS_VERSION}.min.js"
)
/// The default chart template. Default: ChartTemplates.plotly
let mutable DefaultTemplate =
ChartTemplates.plotly
/// reset global defaults to the initial values
let reset () =
DefaultWidth <- 600
DefaultHeight <- 600
DefaultConfig <- Config.init (Responsive = true)
DefaultDisplayOptions <- DisplayOptions.initCDNOnly ()
DefaultTemplate <- ChartTemplates.plotly