-
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 3. Move XY
functions and renderer from vis_types
to chart_expressions
.
#112425
[Canvas] XY. Step 3. Move XY
functions and renderer from vis_types
to chart_expressions
.
#112425
Conversation
# Conflicts: # src/plugins/vis_types/xy/public/vis_component.tsx
…xy_chart_step_2 # Conflicts: # src/plugins/vis_types/vislib/public/vislib/helpers/point_series/_add_to_siri.ts # src/plugins/vis_types/xy/public/config/get_aspects.ts # src/plugins/vis_types/xy/public/config/get_axis.ts # src/plugins/vis_types/xy/public/config/get_config.ts # src/plugins/vis_types/xy/public/expression_functions/xy_vis_fn.ts # src/plugins/vis_types/xy/public/services.ts # src/plugins/vis_types/xy/public/to_ast.ts # src/plugins/vis_types/xy/public/types/param.ts # src/plugins/vis_types/xy/public/utils/accessors.tsx # src/plugins/vis_types/xy/public/vis_component.tsx # src/plugins/visualizations/common/expression_functions/xy_dimension.ts
# Conflicts: # src/plugins/chart_expressions/expression_xy/common/expression_functions/xy_vis_fn.ts # src/plugins/chart_expressions/expression_xy/common/utils/accessors.tsx # src/plugins/chart_expressions/expression_xy/public/vis_component.tsx # src/plugins/vis_types/xy/public/services.ts
@elasticmachine merge upstream |
merge conflict between base and head |
# Conflicts: # src/plugins/vis_types/xy/kibana.json
@elasticmachine merge upstream |
# Conflicts: # src/plugins/chart_expressions/expression_xy/common/expression_functions/x_domain.ts
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: cc @Kunzetsov |
@@ -92,6 +93,7 @@ export class AggConfig { | |||
public parent?: IAggConfigs; | |||
public brandNew?: boolean; | |||
public schema?: string; | |||
public buckets?: TimeBuckets; |
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 was this added ?
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.
If I remember right, I've done it for this case:
const { esUnit, esValue } = xAgg.buckets.getInterval(); |
That field exists at theAggConfig
instance.
Completes part of #110430 and #101377
Step 3. XY. Move
XY
functions and renderer fromvis_types
tochart_expressions
.Further steps have been performed at this PR:
expression
renderer and functions have been moved to a separateexpressionXy
plugin;vis_type
editor configuration has been left atvisTypeXy
plugin;