-
-
Notifications
You must be signed in to change notification settings - Fork 4.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
feat(chart-unfurl): Add multi y-axis for chart unfurl #28604
Conversation
.map((s, i) => | ||
BarSeries({ | ||
name: s.key, | ||
data: s.data.map(([timestamp, countsForTimestamp]) => ({ |
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.
I'm currently using stacked bar graphs on the browser side for multi y axis
I'm thinking we should match but I don't have strong opinions on whether stacked or unstacked bar chart is better. Should we stick with stacked for now?
data: s.data.map(([timestamp, countsForTimestamp]) => ({ | |
stack: 'area', | |
data: s.data.map(([timestamp, countsForTimestamp]) => ({ |
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 i'll just reflect whatever you're doing in discover!
Tests and changes LGTM! Just had a question about stacking bar charts |
Adding the ability to unfurl multi y-axis charts.
Adding the ability to unfurl multi y-axis charts.