Skip to content

Commit 6f18960

Browse files
F# reference pages
1 parent 929010e commit 6f18960

File tree

65 files changed

+1195
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1195
-3
lines changed

_data/make_ref_pages.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
schema = json.load(open("plotschema.json"))
44

55

6-
for upperlang in ["Python", "JavaScript", "MATLAB", "R", "Julia"]:
6+
for upperlang in ["Python", "JavaScript", "MATLAB", "R", "Julia", "F#"]:
77
lang = upperlang.lower()
8+
lang = "fsharp" if lang == "f#" else lang
89
langcode = "plotly_js" if lang == "javascript" else lang
910
for attr in [
1011
"xaxis", "yaxis", "coloraxis", "scene", "polar", "ternary", "geo", "mapbox",
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
permalink: /fsharp/reference/index/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: Reference Index
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
<h2>F# Figure Reference</h2>
10+
11+
<br />
12+
<p>The pages linked in the sidebar together form the exhaustive reference for all of the attributes in the core figure data structure
13+
that the Plotly library operates on. They are automatically-generated from the
14+
<a href="https://raw.githubusercontent.com/plotly/plotly.js/master/dist/plot-schema.json">machine-readable Plotly.js schema reference</a>.</p>
15+
16+
17+
<p>&nbsp;</p>
18+
19+
<p>&nbsp;</p>
20+
21+
<p>&nbsp;</p>
22+
23+
<p>&nbsp;</p>
24+
25+
<p>&nbsp;</p>
26+
27+
<p>&nbsp;</p>
28+
29+
<p>&nbsp;</p>
30+
31+
<p>&nbsp;</p>
32+
33+
<p>&nbsp;</p>
34+
35+
<p>&nbsp;</p>
36+
37+
<p>&nbsp;</p>
38+
39+
<p>&nbsp;</p>
40+
41+
<p>&nbsp;</p>
42+
43+
<p>&nbsp;</p>
44+
<p>&nbsp;</p>
45+
46+
<p>&nbsp;</p>
47+
48+
<p>&nbsp;</p>
49+
50+
<p>&nbsp;</p>
51+
52+
<p>&nbsp;</p>
53+
54+
<p>&nbsp;</p>
55+
56+
<p>&nbsp;</p>
57+
58+
<p>&nbsp;</p>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
permalink: /fsharp/reference/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: Single-Page Reference
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
<h2>F# Figure Reference: Single Page</h2>
10+
11+
12+
13+
14+
{% include posts/plotschema-reference.html %}

_posts/reference_pages/2020-07-20-julia-ref_index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
page_type: reference
55
language: julia
66
name: Reference Index
7-
description: Figure attribute reference for Plotly's julia open-source graphing library.
7+
description: Figure attribute reference for Plotly's Julia open-source graphing library.
88
---
9-
<h2>julia Figure Reference</h2>
9+
<h2>Julia Figure Reference</h2>
1010

1111
<br />
1212
<p>The pages linked in the sidebar together form the exhaustive reference for all of the attributes in the core figure data structure
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
permalink: /fsharp/reference/layout/annotations/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: layout.annotations
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>layout.annotations</code></h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
16+
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="annotations" %}
17+
18+
</div>
19+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
permalink: /fsharp/reference/bar/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: bar Traces
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>bar</code> Traces</h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% include posts/reference-trace.html trace_name="bar" trace_data=site.data.plotschema.traces.bar %}
16+
17+
</div>
18+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
permalink: /fsharp/reference/barpolar/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: barpolar Traces
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>barpolar</code> Traces</h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% include posts/reference-trace.html trace_name="barpolar" trace_data=site.data.plotschema.traces.barpolar %}
16+
17+
</div>
18+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
permalink: /fsharp/reference/box/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: box Traces
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>box</code> Traces</h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% include posts/reference-trace.html trace_name="box" trace_data=site.data.plotschema.traces.box %}
16+
17+
</div>
18+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
permalink: /fsharp/reference/candlestick/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: candlestick Traces
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>candlestick</code> Traces</h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% include posts/reference-trace.html trace_name="candlestick" trace_data=site.data.plotschema.traces.candlestick %}
16+
17+
</div>
18+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
permalink: /fsharp/reference/carpet/
3+
layout: langindex
4+
page_type: reference
5+
language: fsharp
6+
name: carpet Traces
7+
description: Figure attribute reference for Plotly's F# open-source graphing library.
8+
---
9+
10+
<h2>F# Figure Reference: <code>carpet</code> Traces</h2>
11+
12+
<div class="row">
13+
<div class="eight columns" style="max-width: 900px;">
14+
15+
{% include posts/reference-trace.html trace_name="carpet" trace_data=site.data.plotschema.traces.carpet %}
16+
17+
</div>
18+
</div>

0 commit comments

Comments
 (0)