Replies: 1 comment 2 replies
-
Thank you for bringing to my attention all of these extreme use-cases. The framework should have a solution for those edge-cases. To display the data & labels outside of the regular flow. Currently tooltips do it well. I need to develop a new class to be use in data and in labels. Task added to my TODO list. I will keep you updated when I will have a working solution. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Charts.css works well for small dataset with one or two dozens of rows. Today I tried a table with 50 rows. The line chart still shows a decent line, however, the data values are confined inside their very narrow "strip", therefore all digits are displayed digit-by-digit, from top to bottom. I know I could use
hide-data show-data-on-hover
to make them less ugly, but it won't really fix the problem. Is there any better solution, other than using a different mechanism to display value on hover, by using tooltips?And the primary axis labels have the same problem. UPDATE: But I think that's understandable and acceptable. Charts.css would just need to make the labels to display lower, below the primary axis.
The situation would become much worse, when the table contains hundreds of rows. (
The line would not even be visible.UPDATE: The line would be visible, as long as I disableshow-data-axes
. So, that part is fine.)Is that a practical upper limit that the users should be aware of?
Beta Was this translation helpful? Give feedback.
All reactions