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

Feature range slider #336

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 59 commits into from
Mar 30, 2016
Merged
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
4c28de7
add range component
mdtusz Feb 26, 2016
866d1d2
Change td to gd
mdtusz Feb 26, 2016
d2973f3
Update slider to have greyed exclusion zone
mdtusz Feb 26, 2016
eb619ef
Update slider styling to match existing ranges
mdtusz Feb 29, 2016
854442d
Change arguments to makeSlider and add skeleton tests
mdtusz Feb 29, 2016
b0c16cd
Add slider component directory and scatter rangePlot
mdtusz Mar 1, 2016
2666162
Change where range slider is inserted (now in plot_api)
mdtusz Mar 1, 2016
c8d87d0
Wednesday updates
mdtusz Mar 2, 2016
598d69f
Linting
mdtusz Mar 4, 2016
3ecdcdc
Change file name
mdtusz Mar 4, 2016
fb863f6
Check for null children in appendChildren helper
mdtusz Mar 4, 2016
5857574
Fix handle positioning issue
mdtusz Mar 4, 2016
028b46e
Use variable for slider handle width
mdtusz Mar 4, 2016
4143a65
Add scattergl to allowed types
mdtusz Mar 8, 2016
8cfd258
Initial pass at range slider positioning
mdtusz Mar 8, 2016
fe51426
Add range-sider marker size and opacity
mdtusz Mar 8, 2016
09af762
Pull range-scatter plot into its own function
mdtusz Mar 8, 2016
f381299
Change function name from makeSlider to draw
mdtusz Mar 9, 2016
149348c
Add rangeslider attribute
mdtusz Mar 10, 2016
0ebc894
Position axis title correctly when rangeslider visible
mdtusz Mar 10, 2016
80571f3
Fix margin values for rangeslider
mdtusz Mar 11, 2016
c4d19ad
Change naming from Range to RangeSlider
mdtusz Mar 14, 2016
242458d
Remove initialrange attribute
mdtusz Mar 14, 2016
4f4ffeb
Change Helpers to helpers and add tests
mdtusz Mar 15, 2016
665c061
Move data processors to own file and fix date ranges
mdtusz Mar 15, 2016
c008328
Add re-ranging on slider movement
mdtusz Mar 15, 2016
0a63f2a
Test slider movement
mdtusz Mar 16, 2016
771546c
More tests
mdtusz Mar 16, 2016
47a6829
Lock y-axis zoom/pan
mdtusz Mar 16, 2016
ab9ba72
Change default background color to white
mdtusz Mar 16, 2016
25071ae
Fix test error and remove fdescribe
mdtusz Mar 17, 2016
37e93d5
Add image baseline for range-sliders
Mar 17, 2016
00c0732
Minor changes to tests
mdtusz Mar 17, 2016
4d238e9
Prevent slider from being drawn on export
mdtusz Mar 17, 2016
21d6bdc
Merge branch 'feature-range-slider' of https://github.com/plotly/plot…
Mar 17, 2016
0e9bc90
Update range_slider baseline
Mar 17, 2016
7fd37ae
Update tests for ff
mdtusz Mar 17, 2016
0b32a36
Use constant svg namespace
mdtusz Mar 17, 2016
88e855b
Move supplyLayoutDefaults to own file
mdtusz Mar 17, 2016
df58e62
Fix borderwidth and color defaults and respective tests
mdtusz Mar 18, 2016
358243d
Remove unused empty svg elements
mdtusz Mar 18, 2016
6bb10c0
Remove rangeslider when visible set to false
mdtusz Mar 18, 2016
0fd5c37
Fix beyond-range-end bug
mdtusz Mar 18, 2016
288c4a3
Remove fdescribe
mdtusz Mar 18, 2016
767a821
Fix title positioning and split out slider creation
mdtusz Mar 21, 2016
67674b6
Update image baseline
Mar 21, 2016
2deed2e
Wrap clip path in <defs>
mdtusz Mar 21, 2016
7ead461
Adjust handle grab area for more fine grained control
mdtusz Mar 22, 2016
5214897
fixup! Adjust handle grab area for more fine grained control
mdtusz Mar 22, 2016
771b113
Change attribute names (height->thickness, backgroundcolor->bgcolor)
mdtusz Mar 22, 2016
fb91908
Update image baseline
Mar 22, 2016
2dd5e8e
Defaults now accept `rangeslider: true` and fixrange on all counterAxes
mdtusz Mar 22, 2016
83375d2
Alphabetize attributes
mdtusz Mar 23, 2016
cb50997
fixup! Alphabetize attributes
mdtusz Mar 23, 2016
6736bbb
Fix changed height->thickness attribute
mdtusz Mar 23, 2016
c613c6c
Remove scattergl support (for now)
mdtusz Mar 23, 2016
c55bf02
Update baseline image
Mar 23, 2016
cbe2c26
Add role to attribute
mdtusz Mar 23, 2016
271589c
Change role style->info
mdtusz Mar 23, 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
Prev Previous commit
Next Next commit
Remove scattergl support (for now)
  • Loading branch information
mdtusz committed Mar 23, 2016
commit c613c6ce9ece8231f65c62409583c85a67186dc3
2 changes: 1 addition & 1 deletion 2 src/components/rangeslider/range_plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = function rangePlot(gd, w, h) {


// for now, only scatter traces are supported
var allowedTypes = ['scatter', 'scattergl'];
var allowedTypes = ['scatter'];

for(var i = 0; i < traces.length; i++) {

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.