Documentation
¶
Overview ¶
Package grapher provides a tool for easily creating graphs.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GraphType ¶
type GraphType int
GraphType is used to define the type of graph you need.
const ( // Normal GraphType provides a grapher where you can set points a certain dates. Normal GraphType = iota // Cumulative GraphType will accumulate all previous values on your graph. Cumulative GraphType = iota // CumulativeSameDate GraphType will accumulate values // with the same date on your graph. CumulativeSameDate GraphType = iota )
type Grapher ¶
type Grapher[T Numeric] struct { // contains filtered or unexported fields }
Grapher is used to easily create graphs.
Click to show internal directories.
Click to hide internal directories.