Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BarGraph ¶
type BarGraph struct {
// contains filtered or unexported fields
}
BarGraph structure
func (*BarGraph) SetOptions ¶
func (bg *BarGraph) SetOptions(options BarGraphOptions) *BarGraph
SetOptions
type BarGraphOptions ¶
type BarGraphOptions struct { Width int // Maximum width of the graph in characters BarCharacter string // Character used to draw bars AxisCharacter string // Character used for axis }
BarGraphOptions
func (*BarGraphOptions) SetAxisCharacter ¶
func (o *BarGraphOptions) SetAxisCharacter(char string) *BarGraphOptions
SetAxisCharacter
func (*BarGraphOptions) SetBarCharacter ¶
func (o *BarGraphOptions) SetBarCharacter(char string) *BarGraphOptions
SetBarCharacter
func (*BarGraphOptions) SetWidth ¶
func (o *BarGraphOptions) SetWidth(width int) *BarGraphOptions
SetWidth
type LineGraph ¶
type LineGraph struct {
// contains filtered or unexported fields
}
LineGraph represents a line graph structure.
func NewLineGraph ¶
func NewLineGraph() *LineGraph
NewLineGraph creates a new LineGraph instance with default options.
func (*LineGraph) SetOptions ¶
func (lg *LineGraph) SetOptions(options LineGraphOptions) *LineGraph
SetOptions sets the line graph options.
type LineGraphOptions ¶
type LineGraphOptions struct { Width int // Maximum width of the graph in characters Height int // Maximum height of the graph in lines AxisCharacter string // Character for axis PointCharacter string // Character for data points }
LineGraphOptions
func DefaultLineGraphOptions ¶
func DefaultLineGraphOptions() LineGraphOptions
DefaultLineGraphOptions
func (*LineGraphOptions) SetAxisCharacter ¶
func (o *LineGraphOptions) SetAxisCharacter(char string) *LineGraphOptions
SetAxisCharacter
func (*LineGraphOptions) SetHeight ¶
func (o *LineGraphOptions) SetHeight(height int) *LineGraphOptions
SetHeight
func (*LineGraphOptions) SetPointCharacter ¶
func (o *LineGraphOptions) SetPointCharacter(char string) *LineGraphOptions
SetPointCharacter
func (*LineGraphOptions) SetWidth ¶
func (o *LineGraphOptions) SetWidth(width int) *LineGraphOptions
SetWidth
Click to show internal directories.
Click to hide internal directories.