| << monthlymin << | Table Of Contents | >> newtask >> | 
| Keyword | navigator | 
| Purpose | Defines a navigator object with the specified ID. This object can be used in reports to include a navigation bar with references to other reports. | |
| Syntax | navigator <ID> [{ <attributes> }] | |
| Arguments | none | |
| Context | properties | |
| Attributes | hidereport | 
project "Navigator Example" 2011-12-12 +1m
task foo "Foo" {
  task "Foo 1"
  task "Foo 2"
}
task bar "Bar" {
  task "Bar 1"
  task "Bar 2"
}
navigator navbar
textreport frame "" {
  header -8<-
    == My Reports ==
    <[navigator id="navbar"]>
  ->8-
  footer "----"
  taskreport "Foo Reports" {
    formats html
    taskroot foo
  }
  taskreport "Bar Reports" {
    formats html
    taskroot bar
  }
}
| << monthlymin << | Table Of Contents | >> newtask >> |