-
Notifications
You must be signed in to change notification settings - Fork 15
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
On chart edit page a chart isn't visible fully #113
Comments
Actually it is REALLY BAD. I was trying to fix some other charts and I can't because I don't see changes and can't understand what the chart is showing. It would prevent creating new charts as well. |
Same comment as in #114 (comment):
|
I would suggest making |
@smacker Thanks! |
As far as I could test it, this problem is already happening in current The problem appears when the chart title is long enough that it does not fit in the browser window, no matter if we use Imo it's a good idea to fix the bug, but due to our current time limit I'd purpose to do a "patch" or workaround, that will work in "all" circumstances:
As a v2 solution could be to use breakpoints to avoid edge cases as described above. imo v2 or v3 should be done in the next iteration, and release the beta with the quick fix. example:max-width: 358px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; You'll find below two examples of how our current charts are affected by this issue already in And same data with a different chart layout. |
@dpordomingo, I was seeing this now with @ricardobaeta and propose using this option:
But with a twist: We since it's about defining an arbitrary width, we can do this using calc(total width of the container, e.g. 100% - width of the maximum size of the top right toolbar, e.g. xx px or whatever metric we use) This way the ellipsed element width can vary based on the window size, reducing wasted whitespace (since the toolbar width varies less than the overall container) and making it much less likely to break at small widths. Example: https://www.w3schools.com/code/tryit.asp?filename=G595AP15C6RU |
Regression after the redesign.
It has lables on x axis. But I can't see them here. Only on the dashboard.
The text was updated successfully, but these errors were encountered: