8000 Drop support for deprecated error bar `opacity` attribute (use alpha channel of error bar `color` attribute instead) by emilykl · Pull Request #7216 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Drop support for deprecated error bar opacity attribute (use alpha channel of error bar color attribute instead) #7216

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 8 commits into from
Oct 8, 2024
Merged
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
include error bar opacity in mock
  • Loading branch information
emilykl committed Oct 8, 2024
commit 51ea85b383c2dade9466a4ed39149d9c20bb6400
4 changes: 2 additions & 2 deletions test/image/mocks/error_bar_style.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@
"error_y": {
"type": "constant",
"value": 0.1,
"color": "#85144B",
"color": "#85144BCC",
"thickness": 1.5,
"width": 3
},
"error_x": {
"type": "constant",
"value": 0.2,
"color": "#85144B",
"color": "#85144B44",
"thickness": 1.5,
"width": 3
},
Expand Down
0