-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Lens] Hide some suggestions in preparation for pie charts #64740
[Lens] Hide some suggestions in preparation for pie charts #64740
Conversation
Pinging @elastic/kibana-app (Team:KibanaApp) |
💚 Build SucceededTo update your PR or re-run it, just comment with: |
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.
tested locally, good change! LGTM 🙆♀️
@@ -103,9 +103,16 @@ export interface TableSuggestion { | |||
* * `unchanged` means the table is the same in the currently active configuration | |||
* * `reduced` means the table is a reduced version of the currently active table (some columns dropped, but not all of them) | |||
* * `extended` means the table is an extended version of the currently active table (added one or multiple additional columns) | |||
* * `reorder` means the table columns have changed order, which change the data as well |
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.
out of curiosity, this is not possible yet in current lens?
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.
Yeah we were calling these "extended" tables, but that was before wanting to do special handling of these for the XY chart.
…4740) * [Lens] Hide some suggestions in preparation for pie charts * Suggest reordering the X and Break down by axis * More tweaks
…64909) * [Lens] Hide some suggestions in preparation for pie charts * Suggest reordering the X and Break down by axis * More tweaks Co-authored-by: Elastic Machine <[email protected]>
As a reminder, suggestions are used in three different ways:
This change hides some of the suggestions from the bottom row, which will be replaced soon by pie chart suggestions.
Hides table suggestions from the bottom row
Hides some XY chart suggestions when looking at a different visualization
Hides XY chart suggestions that require removing a dimension
Improves the "reorder" suggestion when looking at 2 string fields in the XY chart
Checklist