1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
\name{get.gantt.info}
\alias{get.gantt.info}
\title{Gather the information to create a Gantt chart}
\description{
Allows the user to enter the information for a Gantt chart.
}
\usage{
get.gantt.info(format="\%Y/\%m/\%d")
}
\arguments{
\item{format}{the format to be used in entering dates/times. Defaults to
YYYY/mm/dd. See \link{strptime} for various date/time formats.}
}
\value{
The list used to create the chart. Elements are:
\item{labels}{The task labels to be displayed at the left of the chart.}
\item{starts,ends}{The task starts/ends as POSIXct dates/times.}
\item{priorities}{Task priorities as integers in the range 1 to 10.
There can be less than 10 levels of priority, but if priorities do
not start at 1 (assumed to be the highest), the default priority colors
will be calculated from 1.}
}
\author{Jim Lemon}
\seealso{\link{gantt.chart}}
\examples{
cat("Enter task times using HH:MM (hour:minute) format\n")
get.gantt.info("\%H:\%M")
}
\keyword{misc}
|