Documentation ¶
Overview ¶
roadmap provides data for generating roadmaps
roadmap provides data for generating roadmaps
roadmap provides data for generating roadmaps
Index ¶
- func QuarterInt32sBeginEnd(begin, end int32) (int32, int32)
- type Canvas
- func (can *Canvas) AddItem(item Item)
- func (can *Canvas) BuildRows()
- func (can *Canvas) InflateItem(item Item) (Item, error)
- func (can *Canvas) InflateItems() error
- func (can *Canvas) SetMaxQuarter(qtr int32) error
- func (can *Canvas) SetMinMaxQuarter(qtrMin, qtrMax int32) error
- func (can *Canvas) SetMinQuarter(qtr int32) error
- func (can *Canvas) SetRangeCells(cells int32)
- type Feature
- type Initiative
- type Item
- type Roadmap
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func QuarterInt32sBeginEnd ¶
QuarterInt32sBeginEnd converts relative and default quarter times to absolute int32 quarter numbers.
Types ¶
type Canvas ¶
type Canvas struct { MinTime time.Time MaxTime time.Time MinX int64 // time MaxX int64 // time MaxY int64 MinY int64 MinCell int32 MaxCell int32 Range mathutil.RangeInt64 Items []Item Rows [][]Item }
func GetCanvasQuarter ¶
func (*Canvas) InflateItems ¶
func (*Canvas) SetMaxQuarter ¶
func (*Canvas) SetMinMaxQuarter ¶
func (*Canvas) SetMinQuarter ¶
func (*Canvas) SetRangeCells ¶
type Feature ¶
type Feature struct { Name string URL string StartTime time.Time EndTime time.Time StartIdx int32 EndIdx int32 }
func (*Feature) AddIndexes ¶
func (f *Feature) AddIndexes(range64 mathutil.RangeInt64) error
type Initiative ¶
type Initiative struct { Name string Features []Feature Rows [][]Feature // Array of array of non-overlapping features }
func (*Initiative) BuildRows ¶
func (init *Initiative) BuildRows(start, end time.Time, range64 mathutil.RangeInt64) ([][]Feature, error)
type Item ¶
type Item struct { MinTime time.Time MaxTime time.Time MinCell int32 // Inflated by Canvas MaxCell int32 // Inflated by Canvas Min int64 // Inflated by Canvas Max int64 // Inflated by Canvas Name string NameShort string URL string ForegroundColorHex string BackgroundColorHex string }
func (*Item) SetMaxQuarter ¶
func (*Item) SetMinMaxQuarter ¶
func (*Item) SetMinQuarter ¶
type Roadmap ¶
type Roadmap struct { Initiatives []Initiative ReportStartTime time.Time ReportEndTime time.Time Cells int32 Range64 mathutil.RangeInt64 }
Click to show internal directories.
Click to hide internal directories.