-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
griddash
#6144
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
griddash
#6144
Changes from 6 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
bd7e1ed
first go at feature
njwhite 4d6eb7e
add log
njwhite f41c353
typo
njwhite b2432b2
update plo-schema diff
njwhite 2180775
fix tests
njwhite 1df0243
fix tests
njwhite 3faa3d2
fix tests
njwhite 64917ba
review comments
njwhite 10e1188
try this
njwhite 445165b
Merge remote-tracking branch 'origin/master' into dev-griddash
njwhite e2943dd
rename per suggestion
njwhite d36312f
retrigger circleci
njwhite fa5bf04
Merge branch 'master' into dev-griddash
archmoj 6f9f4a6
Update src/plots/cartesian/layout_attributes.js
archmoj 3ac8d19
Update src/plots/cartesian/layout_attributes.js
archmoj d7de560
Update draftlogs/6144_add.md
archmoj fc28192
Update src/plots/geo/layout_attributes.js
archmoj 253aad7
Update src/plots/geo/layout_attributes.js
archmoj 56baf0b
Update src/traces/carpet/axis_attributes.js
archmoj d19b0a5
Update src/traces/carpet/axis_attributes.js
archmoj 8e058a8
Update draftlogs/6144_add.md
archmoj d75e27d
undo gl3d
njwhite db4912e
more mocks
njwhite 980568a
generate baselines
njwhite e73ab39
fix tests
njwhite 75f18fd
renaming things
njwhite 8c29110
no gl2d
njwhite a1b7a86
no gl2d
njwhite 0bafc90
no gl2d
njwhite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add `griddash` axis property, cf. `gridwith` and `gridcolor` [[6144](https://github.com/plotly/plotly.js/pull/6144)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"y": [ | ||
-5, | ||
-1, | ||
1 | ||
], | ||
"x": [ | ||
-1, | ||
0, | ||
1 | ||
] | ||
} | ||
], | ||
"layout": { | ||
"xaxis": { | ||
"griddash": "longdashdot", | ||
"type": "linear", | ||
"range": [ | ||
-1.122244488977956, | ||
1.122244488977956 | ||
], | ||
"autorange": true | ||
}, | ||
"yaxis": { | ||
"griddash": "dashdot", | ||
"type": "linear", | ||
"range": [ | ||
-5.439490445859873, | ||
1.4394904458598727 | ||
], | ||
"autorange": true | ||
}, | ||
"height": 450, | ||
"width": 1000, | ||
"autosize": true | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.