-
-
Notifications
You must be signed in to change notification settings - Fork 115
3d trace types - feature parity #605
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
Conversation
| import Dropdown from './Dropdown'; | ||
| import nestedProperty from 'plotly.js/src/lib/nested_property'; | ||
|
|
||
| class UnconnectedVisibilitySelect extends Component { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how does this guy handle multiple values ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As expected actually - all radios deselected when mixed values, and children hidden. Shows multiple values notes on each field that differs.
So far don't have any dropdown VisibilitySelects in StyleTracePanel - will test that when one appears.
| name={_('Text')} | ||
| traceTypes={['scatter', 'scatterpolar', 'scatterpolargl', 'pie']} | ||
| traceTypes={[ | ||
| 'scatter', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scattergl also? generally they go in pairs :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
34ee91b to
7eb42be
Compare
| ]} | ||
| > | ||
| <Flaglist | ||
| <Dropdown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because there are only three options - you cannot deselect both, I found it kinda funny. Subjective really.
|
Notes:
|
6d87e9b to
9d97f8e
Compare
| <SymbolSelector label={_('Symbol')} attr="marker.symbol" /> | ||
| <Numeric label={_('Border Width')} attr="marker.line.width" /> | ||
| <ColorPicker label={_('Border Color')} attr="marker.line.color" /> | ||
| <Radio |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you plz remove these from line given that we don't allow line colorscales atm :)
| colorscale={colorscale} | ||
| /> | ||
| )} | ||
| <Radio |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from the Percy screenshot it looks like multi-value is odd with these...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well, I could be convinced that the percy screenshot is reasonable, let's talk about it
General
3D scatter
StyleTrace
Layout
Axes
Color Bars
Images
3D Line
StyleTrace
Axes
3D Surface
StyleTrace
Layout
Color Bars
3D Mesh
StyleTrace
Layout
Color Bars
Ternary
Closes #516
Closes #520
Closes #606
Addresses #524