-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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] Support two y-axis for visualizing data in different scale #53663
Comments
Pinging @elastic/kibana-app (Team:KibanaApp) |
With two y-axis it is useful to have an option to "synchronize" the scale to the greatest common denominator vs. having them use auto-generated independent scales. Both modes are useful. |
@markov00 is this synchronize something you think Elastic chart should do, or rather Kibana itself by calculating/providing the correct axes ranges? |
@timroes sorry for the late reply, we already have that option, that compute an extended domain that use the minimum value of the minimum domain values, and the max of the maximum domain values of both scales. The prop is |
Cases where we want to automatically split into two y-axis:
What do we do, if our system is figuring out, that we would need more then 2 axis to put all series? We will go beyond 2 axis in the We also need a way for visualizations to extend the popover panel (that is currently provided by the datasource). |
I'm just going to put a link to this article that offers alternatives to multiple y-axis. I only mention it because Lens is supposed to be geared towards making the "right" chart choice. I'm not necessarily saying no to multiple y-axis, but just to consider if there are also other ways we can support the data needs. |
Discussed with @wylieconlon and we can go forward with the approach outlined in the comment above #53663 (comment) The prerequisite of popover panel extensions for visualizations is already available. |
Describe the feature:
Currently, in Lens you can visualize multiple y-axis on all the same left y-axes scale. Often users need to combine series with a different scale. We want to add the ability to add another y-axis on the right side.
For every chart in Lens the default y-axes will be on the left side. Users will have the ability to decide to use another y-axis on the right side and define which series uses which axis (left y-axes or right)
This capability only exists on y-axis series.
The text was updated successfully, but these errors were encountered: