refactor: reset
This commit is contained in:
parent
7e80e9a848
commit
c363d1d5e3
50 changed files with 55 additions and 10282 deletions
31
alias.go
31
alias.go
|
|
@ -31,3 +31,34 @@ type Box = chart.Box
|
|||
type Renderer = chart.Renderer
|
||||
type Style = chart.Style
|
||||
type Color = drawing.Color
|
||||
|
||||
type Point struct {
|
||||
X int
|
||||
Y int
|
||||
}
|
||||
|
||||
const (
|
||||
ChartTypeLine = "line"
|
||||
ChartTypeBar = "bar"
|
||||
ChartTypePie = "pie"
|
||||
ChartTypeRadar = "radar"
|
||||
ChartTypeFunnel = "funnel"
|
||||
)
|
||||
|
||||
const (
|
||||
ChartOutputSVG = "svg"
|
||||
ChartOutputPNG = "png"
|
||||
)
|
||||
|
||||
const (
|
||||
PositionLeft = "left"
|
||||
PositionRight = "right"
|
||||
PositionCenter = "center"
|
||||
PositionTop = "top"
|
||||
PositionBottom = "bottom"
|
||||
)
|
||||
|
||||
const (
|
||||
OrientHorizontal = "horizontal"
|
||||
OrientVertical = "vertical"
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue