Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2b69d85

Browse filesBrowse files
authored
Merge pull request #325 from plotly/plotly-js-3-docs
Plotly.js v3 docs
2 parents a9161ec + 26f9e47 commit 2b69d85
Copy full SHA for 2b69d85
Expand file treeCollapse file tree

28 files changed

+367
-1116
lines changed

‎_includes/layouts/side-bar.html

Copy file name to clipboardExpand all lines: _includes/layouts/side-bar.html
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@
4747
{% assign advanced_charts = true %}
4848
{% elsif page.display_as == "multiple_axes" %}
4949
{% assign multiple_axes = true %}
50-
{% elsif page.display_as == "transforms" %}
51-
{% assign transforms = true %}
5250
{% elsif page.display_as == "controls" %}
5351
{% assign controls = true %}
5452
{% elsif page.display_as == "animations" %}

‎_includes/posts/documentation_eg.html

Copy file name to clipboardExpand all lines: _includes/posts/documentation_eg.html
-22Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
{% assign 3d_charts = true %}
2525
{% elsif page.display_as == "multiple_axes" %}
2626
{% assign multiple_axes = true %}
27-
{% elsif page.display_as == "transforms" %}
28-
{% assign transforms = true %}
2927
{% elsif page.display_as == "controls" %}
3028
{% assign controls = true %}
3129
{% elsif page.display_as == "animations" %}
@@ -382,26 +380,6 @@
382380
</section>
383381
{% endif %}
384382

385-
{% if transforms %}
386-
<section class="--tutorial-section">
387-
<header class="--section-header"><a href="#transforms" name="transforms" id="transforms">Transforms</a>
388-
</header>
389-
<section class="--grid">
390-
<ul class="--grid-list">
391-
{%- for page in languagelist -%}
392-
{% if page.display_as == "transforms" %}
393-
394-
395-
{% include layouts/grid-item.html %}
396-
397-
398-
{% endif %}
399-
{%- endfor -%}
400-
</ul>
401-
</section>
402-
</section>
403-
{% endif %}
404-
405383
{% if controls %}
406384
<section class="--tutorial-section" id="controls">
407385
<header class="--section-header"><a href="#controls">Add Custom Controls</a>

‎_includes/posts/mainlang_documentation_eg.html

Copy file name to clipboardExpand all lines: _includes/posts/mainlang_documentation_eg.html
-35Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
{% assign 3d_charts = true %}
2828
{% elsif page.display_as == "multiple_axes" %}
2929
{% assign multiple_axes = true %}
30-
{% elsif page.display_as == "transforms" %}
31-
{% assign transforms = true %}
3230
{% elsif page.display_as == "controls" %}
3331
{% assign controls = true %}
3432
{% elsif page.display_as == "animations" %}
@@ -485,39 +483,6 @@
485483
</section>
486484
{% endif %}
487485

488-
{% if transforms %}
489-
<section class="--tutorial-section">
490-
<header class="--section-header">
491-
<a href="#transforms" name="transforms" id="transforms">Transforms</a>
492-
493-
{% assign forloop_idx = 0 %}
494-
{%- for page in languagelist -%}
495-
{% if page.display_as == "transforms" and page.layout != "langindex" %}
496-
{% assign forloop_idx = forloop_idx | plus:1 %}
497-
{% endif %}
498-
{%- endfor -%}
499-
500-
{% if forloop_idx >= num_examples %}
501-
<a href="/{{language}}/transforms/" class="langindexlink">More Transforms &raquo;</a>
502-
{% endif %}
503-
</header>
504-
<section class="--grid">
505-
<ul class="--grid-list">
506-
507-
{% assign forloop_idx = 0 %}
508-
509-
{%- for page in languagelist -%}
510-
{% if page.display_as == "transforms" and page.layout != "langindex" and forloop_idx < num_examples %}
511-
{% assign forloop_idx = forloop_idx | plus:1 %}
512-
{% include layouts/grid-item.html %}
513-
{% endif %}
514-
{%- endfor -%}
515-
516-
</ul>
517-
</section>
518-
</section>
519-
{% endif %}
520-
521486
{% if controls %}
522487
<section class="--tutorial-section" id="controls">
523488
<header class="--section-header">

‎_posts/plotly_js/basic/WebGL/2018-08-07-webgl_plotlyjs_index.html

Copy file name to clipboardExpand all lines: _posts/plotly_js/basic/WebGL/2018-08-07-webgl_plotlyjs_index.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
language: plotly_js
66
layout: base
77
name: WebGL vs SVG
8-
order: 15
8+
order: 14
99
permalink: javascript/webgl-vs-svg/
1010
thumbnail: thumbnail/webgl.jpg
1111
---

‎_posts/plotly_js/basic/mixed/2015-04-09-mixed_plotly_js_index.html

Copy file name to clipboardExpand all lines: _posts/plotly_js/basic/mixed/2015-04-09-mixed_plotly_js_index.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
language: plotly_js
66
layout: base
77
name: Multiple Chart Types
8-
order: 14
8+
order: 13
99
permalink: javascript/graphing-multiple-chart-types/
1010
redirect_from: javascript-graphing-library/graphing-multiple-chart-types/
1111
thumbnail: thumbnail/mixed2.jpg

‎_posts/plotly_js/basic/pointcloud/2017-06-15-advanced-pointcloud.html

Copy file name to clipboardExpand all lines: _posts/plotly_js/basic/pointcloud/2017-06-15-advanced-pointcloud.html
-233Lines changed: 0 additions & 233 deletions
This file was deleted.

‎_posts/plotly_js/basic/pointcloud/2017-06-15-basic-pointcloud.html

Copy file name to clipboardExpand all lines: _posts/plotly_js/basic/pointcloud/2017-06-15-basic-pointcloud.html
-16Lines changed: 0 additions & 16 deletions
This file was deleted.

‎_posts/plotly_js/basic/pointcloud/2017-06-15-plotlyjs-pointcloud-index.html

Copy file name to clipboardExpand all lines: _posts/plotly_js/basic/pointcloud/2017-06-15-plotlyjs-pointcloud-index.html
-13Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.