We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Dan,
Hope all is well!
I've noticed the whitespace seems excessive when plotting with a legend.
I think this line in plotting.R
dims.total.width <- (dims.plot.x + max(dims.plot.width, dims.legend.width));
should be
dims.total.width <- max(dims.plot.x + dims.plot.width, dims.legend.width);
The text was updated successfully, but these errors were encountered:
Thanks, I'll look into it :) I don't remember why I did it this way (might have had a reason ?) Dan
Sorry, something went wrong.
ddediu
No branches or pull requests
Hi Dan,
Hope all is well!
I've noticed the whitespace seems excessive when plotting with a legend.
I think this line in plotting.R
dims.total.width <- (dims.plot.x + max(dims.plot.width, dims.legend.width));
should be
dims.total.width <- max(dims.plot.x + dims.plot.width, dims.legend.width);
The text was updated successfully, but these errors were encountered: