-
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
[Canvas] XY. Step 1. Remove all specific logic, related to aggType. #111876
Merged
Kuznietsov
merged 33 commits into
elastic:presentation/feature-xy
from
Kuznietsov:xy_chart
Sep 22, 2021
Merged
Changes from 30 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
9dfab8a
Added comments for places I wished to refactor.
Kuznietsov 76b1f5d
Merge branch 'master' into xy_chart
Kuznietsov 8a6b502
Fixed comments.
Kuznietsov f74fc28
Removed logic, related to BUCKET_TYPES.
Kuznietsov 87fd22f
removed aggType connected code.
Kuznietsov df2e3db
Added `id` to `xy_dimension` to avoid direct comparison with aggId
Kuznietsov 6093e96
Removed all checks of seriesParams at chart.
Kuznietsov 80eb59f
removed aggId and aggType from chart
Kuznietsov 74867c6
Merge branch 'master' into xy_chart
kibanamachine 807a8eb
removed all aggId/aggTypes from tests/mocks.
Kuznietsov c803841
Fixed comment.
Kuznietsov ce5c1d4
moved `get_agg_id.ts` util to the vislib
Kuznietsov 8276a66
clearified the code, related to isSimpleField logic.
Kuznietsov ef3dcef
added comment.
Kuznietsov 9909715
Fixed error at percentile agg.
Kuznietsov 4b34965
Fixed render_all_series failure of tests.
Kuznietsov 7dd186a
Added tests for new behavior.
Kuznietsov a325fe4
changed the way of handling `enableHistogramMode`.
Kuznietsov 6a70424
updated snapshots.
Kuznietsov defbf4f
Merge branch 'master' into xy_chart
Kuznietsov 4fe713e
remove not used lib.
Kuznietsov 33dc89f
Merge branch 'presentation/feature-xy' into xy_chart
kibanamachine aa6e158
Merge branch 'presentation/feature-xy' into xy_chart
kibanamachine 84fe9a9
Merge branch 'presentation/feature-xy' into xy_chart
kibanamachine fa9bc9d
Merge branch 'master' into xy_chart
Kuznietsov 308a84e
Merge branch 'master' into xy_chart
kibanamachine e0aca67
Merge branch 'master' into xy_chart
kibanamachine bbe4077
Merge branch 'master' into xy_chart
kibanamachine 7714247
Fixed shard_delay test.
Kuznietsov 9d06227
Merge branch 'presentation/feature-xy' into xy_chart
Kuznietsov 2390697
removed all todos from xy.
Kuznietsov d00c6a9
removed latest todos.
Kuznietsov 884bc38
Changed the type of tickFormatter.
Kuznietsov 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
2 changes: 1 addition & 1 deletion
2
src/plugins/vis_types/vislib/public/__snapshots__/to_ast.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/plugins/vis_types/vislib/public/__snapshots__/to_ast_pie.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
File renamed without changes.
This file contains 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
3 changes: 3 additions & 0 deletions
3
src/plugins/vis_types/xy/public/__snapshots__/to_ast.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 |
---|---|---|
|
@@ -7,4 +7,3 @@ | |
*/ | ||
|
||
export { getConfig } from './get_config'; | ||
export { getAggId } from './get_agg_id'; |
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.
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.
Just checking here. Can we omit using
any
here?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)