Skip to content

[DO NOT MERGE] Animations #550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 26 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
54bf57c
First cut at animations
rreusser May 18, 2016
c3517c2
Slightly ugly hack to animate point styles
rreusser May 31, 2016
dba188b
Merge remote-tracking branch 'upstream/master' into animations
rreusser Jun 2, 2016
2eae93a
Remove stray markTime
rreusser Jun 2, 2016
e9bcf90
A method to clone input traces
rreusser Jun 2, 2016
5497e7d
Make animations promise-based
rreusser Jun 8, 2016
c159dae
Non-working commit in the right direction...
rreusser Jun 8, 2016
1449cc5
Partial trace refactor
rreusser Jun 9, 2016
99b4bed
Scattertrace element persistence cleanup
rreusser Jun 10, 2016
7285a0a
Further animation progress and cleanup
rreusser Jun 11, 2016
8dc302c
Scatter trace optimization
rreusser Jun 12, 2016
5a624de
Scatter trace optimization
rreusser Jun 12, 2016
d580df3
Merge branch 'animations' of github.com:rreusser/plotly.js into anima…
rreusser Jun 13, 2016
81e2182
Refactor scatter traces
rreusser Jun 14, 2016
82071e3
Refactor scatter traces
rreusser Jun 14, 2016
710de7f
Merge branch 'animations' of github.com:rreusser/plotly.js into anima…
rreusser Jun 14, 2016
48e9b29
Merge remote-tracking branch 'upstream/master' into animations
rreusser Jun 14, 2016
aa19ac0
Add build
rreusser Jun 14, 2016
821c57e
Object persistence for error bars
rreusser Jun 16, 2016
a655a4b
Error bar transitions
rreusser Jun 17, 2016
c978b46
First cut at scale transitions
rreusser Jun 20, 2016
51672d8
Undo build
rreusser Jun 20, 2016
31f4f1b
Merge remote-tracking branch 'upstream/master' into animations
rreusser Jun 20, 2016
5c5c715
Animation interrupts
rreusser Jun 20, 2016
b75280f
Remove linepoint override
rreusser Jun 21, 2016
990787e
Removed unused logic
rreusser Jun 21, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/traces/scatter/plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ module.exports = function plot(gd, plotinfo, cdscatter, group, transitionOpts) {
line = trace.line,
tr = d3.select(group);

console.log('start plot of ', trace.uid);
tr.style('stroke-miterlimit', 2);

// (so error bars can find them along with bars)
Expand Down Expand Up @@ -235,6 +234,7 @@ module.exports = function plot(gd, plotinfo, cdscatter, group, transitionOpts) {

// remove paths that didn't get used
//tr.selectAll('path:not([d])').remove();
*/

function visFilter(d) {
return d.filter(function(v) { return v.vis; });
Expand Down