Skip to content

Commit 8a16b0f

Browse files
committed
Merge pull request #2239 from palantir/RC5
Release version 1.0.0-rc5 (--> master)
2 parents 984c7ef + 413680c commit 8a16b0f

File tree

90 files changed

+2421
-2244
lines changed

Some content is hidden

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

90 files changed

+2421
-2244
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plottable",
33
"description": "A library for creating charts out of D3",
4-
"version": "1.0.0-rc4",
4+
"version": "1.0.0-rc5",
55
"main": ["plottable.js", "plottable.css"],
66
"license": "MIT",
77
"ignore": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plottable.js",
33
"description": "A library for creating charts out of D3",
4-
"version": "1.0.0-rc4",
4+
"version": "1.0.0-rc5",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/palantir/plottable.git"

plottable.d.ts

Lines changed: 245 additions & 239 deletions
Large diffs are not rendered by default.

plottable.js

Lines changed: 835 additions & 829 deletions
Large diffs are not rendered by default.

plottable.min.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plottable.zip

-459 Bytes
Binary file not shown.

quicktests/overlaying/tests/animations/animate_area.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function run(svg, data, Plottable) {
2424
.attr("opacity", 0.75)
2525
.x(function(d) { return d.x; }, xScale)
2626
.y(function(d) { return d.y; }, yScale)
27-
.animate(doAnimate);
27+
.animated(doAnimate);
2828

2929
var areaChart = new Plottable.Components.Table([[yAxis, areaRenderer],
3030
[null, xAxis]]);

quicktests/overlaying/tests/animations/animate_horizontalBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function run(svg, data, Plottable) {
2222
hBarRenderer.attr("opacity", 0.75);
2323
hBarRenderer.x(function(d) { return d.x; }, xScale);
2424
hBarRenderer.y(function(d) { return d.y; }, yScale);
25-
hBarRenderer.animate(doAnimate);
25+
hBarRenderer.animated(doAnimate);
2626

2727
var hBarChart = new Plottable.Components.Table([[yAxis, hBarRenderer],
2828
[null, xAxis]]);

quicktests/overlaying/tests/animations/animate_line.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function run(svg, data, Plottable) {
2424
.x(function(d) { return d.x; }, xScale)
2525
.y(function(d) { return d.y; }, yScale)
2626
.attr("opacity", 0.75)
27-
.animate(doAnimate);
27+
.animated(doAnimate);
2828

2929
var lineChart = new Plottable.Components.Table([[yAxis, lineRenderer],
3030
[null, xAxis]]);

quicktests/overlaying/tests/animations/animate_scatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function run(svg, data, Plottable) {
2222
.x(function(d) { return d.x; }, xScale)
2323
.y(function(d) { return d.y; }, yScale)
2424
.attr("opacity", 0.75)
25-
.animate(true);
25+
.animated(true);
2626

2727
var circleChart = new Plottable.Components.Table([[yAxis, circleRenderer],
2828
[null, xAxis]]);

0 commit comments

Comments
 (0)