forked from plotly/Plotly.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenericChart.fs
More file actions
402 lines (335 loc) · 14.6 KB
/
GenericChart.fs
File metadata and controls
402 lines (335 loc) · 14.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
namespace Plotly.NET
open System
open Newtonsoft.Json
open System.Runtime.CompilerServices
/// HTML template for Plotly.js
module HTML =
let doc =
"""
<!DOCTYPE html>
<html>
<head>
<!-- Plotly.js -->
<meta http-equiv="X-UA-Compatible" content="IE=11" >
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
[ADDITIONAL_HEAD_TAGS]
<style>
.container {
padding-right: 25px;
padding-left: 25px;
margin-right: 0 auto;
margin-left: 0 auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
</style>
</head>
<body>
[CHART]
[DESCRIPTION]
</body>
</html>"""
// let chart =
// """<div id="[ID]" style="width: [WIDTH]px; height: [HEIGHT]px;"><!-- Plotly chart will be drawn inside this DIV --></div>
//<script>
// var data = [DATA];
// var layout = [LAYOUT];
// var config = [CONFIG];
// Plotly.newPlot('[ID]', data, layout, config);
//</script>"""
let chart =
let newScript = new System.Text.StringBuilder()
newScript.AppendLine("""<div id="[ID]" style="width: [WIDTH]px; height: [HEIGHT]px;"><!-- Plotly chart will be drawn inside this DIV --></div>""") |> ignore
newScript.AppendLine("<script type=\"text/javascript\">") |> ignore
newScript.AppendLine(@"
var renderPlotly_[SCRIPTID] = function() {
var fsharpPlotlyRequire = requirejs.config({context:'fsharp-plotly',paths:{plotly:'https://cdn.plot.ly/plotly-latest.min'}}) || require;
fsharpPlotlyRequire(['plotly'], function(Plotly) {") |> ignore
newScript.AppendLine(@"
var data = [DATA];
var layout = [LAYOUT];
var config = [CONFIG];
Plotly.newPlot('[ID]', data, layout, config);") |> ignore
newScript.AppendLine("""});
};
if ((typeof(requirejs) !== typeof(Function)) || (typeof(requirejs.config) !== typeof(Function))) {
var script = document.createElement("script");
script.setAttribute("src", "https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js");
script.onload = function(){
renderPlotly_[SCRIPTID]();
};
document.getElementsByTagName("head")[0].appendChild(script);
}
else {
renderPlotly_[SCRIPTID]();
}""") |> ignore
newScript.AppendLine("</script>") |> ignore
newScript.ToString()
let staticChart =
"""<div id="[ID]" style="width: [WIDTH]px; height: [HEIGHT]px;display: none;"><!-- Plotly chart will be drawn inside this DIV --></div>
<img id="jpg-export"></img>
<script>
var d3 = Plotly.d3;
var img_jpg= d3.select('#jpg-export');
var data = [DATA];
var layout = [LAYOUT];
var config = [CONFIG];
Plotly.newPlot('[ID]', data, layout, config)
// static image in jpg format
.then(
function(gd)
{
Plotly.toImage(gd,{format:'[IMAGEFORMAT]',height: [HEIGHT],width: [WIDTH]})
.then(
function(url)
{
img_jpg.attr("src", url);
}
)
});
</script>"""
/// Module to represent a GenericChart
[<Extension>]
module GenericChart =
open Trace
type Figure =
{
[<JsonProperty("data")>]
Data: Trace list
[<JsonProperty("layout")>]
Layout: Layout
[<JsonProperty("frames")>]
Frames: Frame list
}
static member create data layout = {Data = data; Layout = layout; Frames=[]}
//TO-DO refactor as type with static members to remove verbose top namespace from 'GenericChart.GenericChart'
type GenericChart =
| Chart of Trace * Layout * Config * DisplayOptions
| MultiChart of Trace list * Layout * Config * DisplayOptions
let toFigure (gChart:GenericChart) =
match gChart with
| Chart (trace,layout,_,_) -> Figure.create [trace] layout
| MultiChart (traces,layout,_,_) -> Figure.create traces layout
let fromFigure (fig:Figure) =
let traces = fig.Data
let layout = fig.Layout
if traces.Length <> 1 then
MultiChart (traces,layout,Config(), DisplayOptions())
else
Chart (traces.[0], layout, Config(), DisplayOptions())
let getTraces gChart =
match gChart with
| Chart (trace,_,_,_) -> [trace]
| MultiChart (traces,_,_,_) -> traces
let getLayout gChart =
match gChart with
| Chart (_,layout,_,_) -> layout
| MultiChart (_,layout,_,_) -> layout
let setLayout layout gChart =
match gChart with
| Chart (t,_,c,d) -> Chart (t,layout,c,d)
| MultiChart (t,_,c,d) -> MultiChart (t,layout,c,d)
// Adds a Layout function to the GenericChart
let addLayout layout gChart =
match gChart with
| Chart (trace,l', c, d) ->
Chart (trace, (DynObj.combine l' layout |> unbox), c, d )
| MultiChart (traces, l', c, d) ->
MultiChart (traces, (DynObj.combine l' layout |> unbox), c, d)
/// Returns a tuple containing the width and height of a GenericChart's layout if the property is set, otherwise returns None
let tryGetLayoutSize gChart =
let layout = getLayout gChart
let width,height =
layout.TryGetTypedValue<float> "width",
layout.TryGetTypedValue<float> "height"
match (width,height) with
|(Some w, Some h) -> Some (w,h)
|_ -> None
let getConfig gChart =
match gChart with
| Chart (_,_,c,_) -> c
| MultiChart (_,_,c,_) -> c
let setConfig config gChart =
match gChart with
| Chart (t,l,_,d) -> Chart (t,l,config,d)
| MultiChart (t,l,_,d) -> MultiChart (t,l,config,d)
let getDisplayOptions gChart =
match gChart with
| Chart (_,_,_,d) -> d
| MultiChart (_,_,_,d) -> d
let setDisplayOptions displayOpts gChart =
match gChart with
| Chart (t,l,c,_) -> Chart (t,l,c,displayOpts)
| MultiChart (t,l,c,_) -> MultiChart (t,l,c,displayOpts)
// // Adds multiple Layout functions to the GenericChart
// let addLayouts layouts gChart =
// match gChart with
// | Chart (trace,_) ->
// let l' = getLayouts gChart
// Chart (trace,Some (layouts@l'))
// | MultiChart (traces,_) ->
// let l' = getLayouts gChart
// MultiChart (traces, Some (layouts@l'))
// Combines two GenericChart
let combine(gCharts:seq<GenericChart>) =
let combineLayouts (first:Layout) (second:Layout) =
DynObj.combine first second |> unbox
let combineConfigs (first:Config) (second:Config) =
DynObj.combine first second |> unbox
let combineDisplayOptions (first:DisplayOptions) (second:DisplayOptions) =
DynObj.combine first second |> unbox
gCharts
|> Seq.reduce (fun acc elem ->
match acc,elem with
| MultiChart (traces, l1, c1, d1),Chart (trace, l2, c2, d2) ->
MultiChart (List.append traces [trace], combineLayouts l1 l2, combineConfigs c1 c2, combineDisplayOptions d1 d2)
| MultiChart (traces1,l1,c1,d1),MultiChart (traces2,l2,c2,d2) ->
MultiChart (List.append traces1 traces2,combineLayouts l1 l2, combineConfigs c1 c2, combineDisplayOptions d1 d2)
| Chart (trace1,l1,c1,d1),Chart (trace2,l2,c2,d2) ->
MultiChart ([trace1;trace2],combineLayouts l1 l2, combineConfigs c1 c2, combineDisplayOptions d1 d2)
| Chart (trace,l1,c1,d1),MultiChart (traces,l2,c2,d2) ->
MultiChart (List.append [trace] traces ,combineLayouts l1 l2, combineConfigs c1 c2, combineDisplayOptions d1 d2)
)
// let private materialzeLayout (layout:(Layout -> Layout) list) =
// let rec reduce fl v =
// match fl with
// | h::t -> reduce t (h v)
// | [] -> v
// // Attention order ov layout functions is reverse
// let l' = layout |> List.rev
// reduce l' (Layout())
/// Converts a GenericChart to it HTML representation. The div layer has a default size of 600 if not specified otherwise.
let toChartHTML gChart =
let guid = Guid.NewGuid().ToString()
let tracesJson =
getTraces gChart
|> JsonConvert.SerializeObject
let layoutJson =
getLayout gChart
|> JsonConvert.SerializeObject
let configJson =
getConfig gChart
|> JsonConvert.SerializeObject
let displayOpts = getDisplayOptions gChart
let dims = tryGetLayoutSize gChart
let width,height =
match dims with
|Some (w,h) -> w,h
|None -> 600., 600.
HTML.chart
//.Replace("style=\"width: [WIDTH]px; height: [HEIGHT]px;\"","style=\"width: 600px; height: 600px;\"")
.Replace("[WIDTH]", string width)
.Replace("[HEIGHT]", string height)
.Replace("[ID]", guid)
.Replace("[SCRIPTID]", guid.Replace("-",""))
.Replace("[DATA]", tracesJson)
.Replace("[LAYOUT]", layoutJson)
.Replace("[CONFIG]", configJson)
|> DisplayOptions.replaceHtmlPlaceholders displayOpts
/// Converts a GenericChart to it HTML representation and set the size of the div
let toChartHtmlWithSize (width:int) (height:int) (gChart:GenericChart) =
let guid = Guid.NewGuid().ToString()
let tracesJson =
getTraces gChart
|> JsonConvert.SerializeObject
let layoutJson =
getLayout gChart
|> JsonConvert.SerializeObject
let configJson =
getConfig gChart
|> JsonConvert.SerializeObject
let displayOpts = getDisplayOptions gChart
HTML.chart
.Replace("[ID]", guid)
.Replace("[WIDTH]", string width )
.Replace("[HEIGHT]", string height)
.Replace("[DATA]", tracesJson)
.Replace("[LAYOUT]", layoutJson)
.Replace("[CONFIG]", configJson)
|> DisplayOptions.replaceHtmlPlaceholders displayOpts
/// Converts a GenericChart to it HTML representation and embeds it into a html page.
let toEmbeddedHTML gChart =
let chartMarkup =
toChartHTML gChart
let displayOpts = getDisplayOptions gChart
HTML.doc
.Replace("[CHART]", chartMarkup)
|> DisplayOptions.replaceHtmlPlaceholders displayOpts
/// Converts a GenericChart to its Image representation
let toChartImage (format:StyleParam.ImageFormat) gChart =
let guid = Guid.NewGuid().ToString()
let tracesJson =
getTraces gChart
|> JsonConvert.SerializeObject
let layoutJson =
getLayout gChart
|> JsonConvert.SerializeObject
let html =
HTML.staticChart
//.Replace("style=\"width: [WIDTH]px; height: [HEIGHT]px;\"","style=\"width: 600px; height: 600px;\"")
.Replace("[WIDTH]", string 600 )
.Replace("[HEIGHT]", string 600)
.Replace("[ID]", guid)
.Replace("[DATA]", tracesJson)
.Replace("[LAYOUT]", layoutJson)
.Replace("[IMAGEFORMAT]",format.ToString().ToLower())
.Replace("[CONFIG]","{}")
html
/// Converts a GenericChart to an image and embeds it into a html page
let toEmbeddedImage (format:StyleParam.ImageFormat) gChart =
let html =
let chartMarkup =
toChartImage format gChart
HTML.doc
.Replace("[CHART]", chartMarkup)
.Replace("[CONFIG]","{}")
html
/// Creates a new GenericChart whose traces are the results of applying the given function to each of the trace of the GenericChart.
let mapTrace f gChart =
match gChart with
| Chart (trace, layout, config, displayOpts) -> Chart (f trace, layout, config, displayOpts)
| MultiChart (traces, layout, config, displayOpts) -> MultiChart (traces |> List.map f, layout, config, displayOpts)
/// Creates a new GenericChart whose traces are the results of applying the given function to each of the trace of the GenericChart.
/// The integer index passed to the function indicates the index (from 0) of element being transformed.
let mapiTrace f gChart =
match gChart with
| Chart (trace, layout, config, displayOpts) -> Chart (f 0 trace, layout, config, displayOpts)
| MultiChart (traces, layout, config, displayOpts) -> MultiChart (traces |> List.mapi f, layout, config, displayOpts)
/// Returns the number of traces within the GenericChart
let countTrace gChart =
match gChart with
| Chart (_) -> 1
| MultiChart (traces,_,_,_) -> traces |> Seq.length
/// Returns true if the given chart contains a trace for which the predicate function returns true
let existsTrace (predicate: Trace -> bool) gChart =
match gChart with
| Chart (trace,_,_,_) -> predicate trace
| MultiChart (traces,_,_,_) -> traces |> List.exists predicate
/// Converts from a trace object and a layout object into GenericChart
let ofTraceObject trace = //layout =
GenericChart.Chart(trace, Layout(), Config(), DisplayOptions())
/// Converts from a list of trace objects and a layout object into GenericChart
let ofTraceObjects traces = // layout =
GenericChart.MultiChart(traces, Layout(), Config(), DisplayOptions())
///
let mapLayout f gChart =
match gChart with
| Chart (trace, layout, config, displayOpts) -> Chart (trace,f layout,config, displayOpts)
| MultiChart (traces, layout, config, displayOpts) -> MultiChart (traces,f layout,config, displayOpts) ///
let mapDisplayOptions f gChart =
match gChart with
| Chart (trace, layout, config, displayOpts) -> Chart (trace, layout, config, f displayOpts)
| MultiChart (traces, layout, config, displayOpts) -> MultiChart (traces,layout,config, f displayOpts)