dankelley / plan

R package for project planning
https://dankelley.github.io/plan/
33 stars 9 forks source link

Row and event bar height #11

Closed marcel111 closed 8 years ago

marcel111 commented 8 years ago

Another formatting feature: is it possible to enable the user to control the height of the rows and corresponding timeline bars? It is probably not necessary to be able to set each one individually, but it would be a useful feature to be able to set the default value for all rows/bars.

dankelley commented 8 years ago

Not presently. This is set by the geometry of the plot device. The best approach might be to resize it in an interactive session and then call png() or pdf() before repeating it. This is how I do most of my work, and I think most people work that way in R ... as you get close to the results you want, start saving plots in files. (It's a bit analogous to how most people use R: type a few simple things in the console, but start copy-pasting them into a file early on, and then working in that file.)