-
Notifications
You must be signed in to change notification settings - Fork 35
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
Height Adjust With Many Projects #23
Comments
Hi! To clarify, you are referring to the projects that show up in the floating pop-up window, right? |
Thanks for checking! I'm referring to the projects that show up in the left-most column. If you have a lot of projects there, the project labels start to overlap onto one another. I had tried adjusting I was hoping for an expanded height to be able to display many projects without overlap or to enable scrolling, but I've only been able to figure out how to reduce the number of items displayed so far. |
Ahh I see what you mean, I was going to suggest the same thing you already tried :) Let me see if I can get an example going to replicate this on my end. I'll have to get back to you |
👍 Altering the height statically helps with
|
Checking it out now, I think the height of the entire component is fixed because the main/default view (year) features the days of the week as rows and is therefore limited in height. This is more of a limitation of SVG because you need to instantiate it with a certain width and height (set on this line here: https://github.com/g1eb/reactjs-calendar-heatmap/blob/master/src/calendar-heatmap.component.js#L92). Your screenshot is taken in the "daily" overview right? How many projects would you want to display and what would be the expected behavior? Would the entire component "grow" vertically in order to accommodate as many projects as you want to put there? |
Yes, this is the daily overview. I was able to get around the fixed height by only displaying the daily view and making Thanks for the input on this! |
How would you go about increasing the default height, so that more "Projects" could be shown in an expanding-height fashion rather than being smushed together.
The text was updated successfully, but these errors were encountered: