8000 Add legend click interaction attrs by etpinard · Pull Request #3862 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Add legend click interaction attrs #3862

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 4 commits into from
May 21, 2019
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
fix typo in itemclick, itemdoubleclick attr descriptions
  • Loading branch information
etpinard committed May 15, 2019
commit 88e566a8abb03cb3971f4af73d7a07b2a2a11ed5
4 changes: 2 additions & 2 deletions src/components/legend/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ module.exports = {
editType: 'legend',
description: [
'Determines the behavior on legend item click.',
'*toggle* toggles the visible of the item clicked on the graph.',
'*toggle* toggles the visibility of the item clicked on the graph.',
'*focus* makes the clicked item the sole visible item on the graph.',
'*false* disable legend item click interactions.'
].join(' ')
Expand All @@ -111,7 +111,7 @@ module.exports = {
editType: 'legend',
description: [
'Determines the behavior on legend item double-click.',
'*toggle* toggles the visible of the item clicked on the graph.',
'*toggle* toggles the visibility of the item clicked on the graph.',
'*focus* makes the clicked item the sole visible item on the graph.',
'*false* disable legend item double-click interactions.'
].join(' ')
Expand Down
0