Skip to content

Commit 8692eca

Browse files
committed
deploying
1 parent 59f44ba commit 8692eca

File tree

856 files changed

+24640
-19045
lines changed

Some content is hidden

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

856 files changed

+24640
-19045
lines changed

2015/04/09/stacked-area.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
{x: [1,2,3], y: [3,0,2], stackgroup: 'one'}
66
];
77

8-
Plotly.newPlot(plotDiv, traces, {title: 'stacked and filled line chart'});
8+
Plotly.newPlot('myDiv', traces, {title: 'stacked and filled line chart'});

2015/08/07/graph-and-axis-titles.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
}
3232
};
3333

34-
Plotly.newPlot('myDiv', data, layout);
34+
Plotly.newPlot('myDiv', data, layout);

2017/05/22/add_nodes.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,6 @@
3333
}
3434
}
3535

36+
Plotly.newplot('myDiv', data, layout)
37+
3638
});

2017/06/15/advanced-pointcloud.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var 'myDiv' = document.getElementById("'myDiv'")
1+
var graphDiv = document.getElementById("myDiv")
22
var canvas = document.getElementById("canvas")
33
var ctx = canvas.getContext("2d")
44

2017/11/01/from-a-csv.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@
2424

2525
var data = [{
2626
type: 'table',
27-
columnwidth: [200,500,600,600,400,400,600,600,600],
27+
columnwidth: [150,600,1000,900,600,500,1000,1000,1000],
2828
columnorder: [0,1,2,3,4,5,6,7,8,9],
2929
header: {
3030
values: headerValues,
3131
align: "center",
3232
line: {width: 1, color: 'rgb(50, 50, 50)'},
3333
fill: {color: ['rgb(235, 100, 230)']},
34-
font: {family: "Arial", size: 11, color: "white"}
34+
font: {family: "Arial", size: 8, color: "white"}
3535
},
3636
cells: {
3737
values: cellValues,
3838
align: ["center", "center"],
3939
line: {color: "black", width: 1},
4040
fill: {color: ['rgba(228, 222, 249, 0.65)','rgb(235, 193, 238)', 'rgba(228, 222, 249, 0.65)']},
41-
font: {family: "Arial", size: 10, color: ["black"]}
41+
font: {family: "Arial", size: 9, color: ["black"]}
4242
}
4343
}]
4444

2018/09/18/normalized-stacked-area.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
{x: [1,2,3], y: [3,0,2], stackgroup: 'one'}
66
];
77

8-
Plotly.newPlot(plotDiv, traces, {title: 'Normalized stacked and filled line chart'});
8+
Plotly.newPlot('myDiv', traces, {title: 'Normalized stacked and filled line chart'});
99

2019/08/16/basic_density_mapbox.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
1414
<script>hljs.initHighlightingOnLoad();</script>
1515

16+
17+
18+
<!-- Plotly.js -->
19+
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
20+
1621

1722
<!--
1823
//// Stylesheets

2019/08/16/earthquack_density.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
1414
<script>hljs.initHighlightingOnLoad();</script>
1515

16+
17+
18+
<!-- Plotly.js -->
19+
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
20+
1621

1722
<!--
1823
//// Stylesheets

2019/08/16/multi_density-mapbox.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
1414
<script>hljs.initHighlightingOnLoad();</script>
1515

16+
17+
18+
<!-- Plotly.js -->
19+
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
20+
1621

1722
<!--
1823
//// Stylesheets

2019/10/15/nested-layers-treemap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
parents: unpack(rows, 'parents')
1111
}];
1212

13-
Plotly.newPlot('myDiv', data, layout);
13+
Plotly.newPlot('myDiv', data);
1414
})

0 commit comments

Comments
 (0)