8000 SVG trace on selection perf by etpinard · Pull Request #2583 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

SVG trace on selection perf #2583

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

Merged
merged 12 commits into from
May 1, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Merge branch 'master' into scatter-select-perf
  • Loading branch information
etpinard committed Apr 30, 2018
commit 46858a70f2c3a3e540ca95a300f2900a439afb51
2 changes: 2 additions & 0 deletions src/traces/candlestick/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ module.exports = {
supplyDefaults: require('./defaults'),
calc: require('./calc'),
plot: require('../box/plot').plot,
layerName: 'boxlayer',
style: require('../box/style').style,
styleOnSelect: require('../box/style').styleOnSelect,
hoverPoints: require('../ohlc/hover'),
selectPoints: require('../ohlc/select')
};
1 change: 1 addition & 0 deletions src/traces/histogram/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Histogram.supplyLayoutDefaults = require('../bar/layout_defaults');
Histogram.calc = require('./calc');
Histogram.setPositions = require('../bar/set_positions');
Histogram.plot = require('../bar/plot');
Histogram.layerName = 'barlayer';
Histogram.style = require('../bar/style').style;
Histogram.styleOnSelect = require('../bar/style').styleOnSelect;
Histogram.colorbar = require('../scatter/colorbar');
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0