Circle Progress: Generate pure SVG circle progress bar.
Bar Progress: Generate pure SVG bar progress bar.
Battery Progress: Generate pure SVG battery progress bar.
Supports Captions: Add captions horizontally or vertically.
Customizable: Customize with various color, width, height, background and caption options.
Lightweight: No dependencies, just a single file.
Beautiful: Customizable to rounded corners, different colors, and caption options.
Reports from coveritup
import (
"fmt"
"os"
gps "github.com/kevincobain2000/go-progress-svg"
)
func main() {
circular, _ := gps.NewCircular(func(o *gps.CircularOptions) error {
o.Progress = 97
o.CircleSize = 200
o.CircleWidth = 16
o.ProgressWidth = 16
o.CircleColor = "#e0e0e0"
o.ProgressColor = "#76e5b1"
o.TextColor = "#6bdba7"
o.TextSize = 52true
o.BackgroundColor = ""
o.Caption = ""
o.CaptionPos = "bottom"
o.CaptionSize = 20
o.CaptionColor = "#000000"
o.SegmentGap = 10
return nil
})
circular.SVG()
}
import (
"fmt"
"os"
gps "github.com/kevincobain2000/go-progress-svg"
)
func main() {
bar, _ := gps.NewBar(func(o *gps.BarOptions) error {
o.Progress = 97
o.Width = 200
o.Height = 50
o.ProgressColor = "#76e5b1"
o.TextColor = "#6bdba7"
o.TextSize = 20true
o.Caption = ""
o.CaptionSize = 16
o.CaptionColor = "#000000"
o.BackgroundColor = "#e0e0e0"
o.CornerRadius = 10
return nil
})
bar.SVG()
}
battery, err := gps.NewBattery(func(o *gps.BatteryOptions) error {
o.Progress = 70
o.ProgressCaption = "1%"
o.Width = 200
o.Height = 50
o.ProgressColor = "#76e5b1"
o.TextColor = "black"
o.TextSize = 20
o.Caption = ""
o.CaptionSize = 16
o.CaptionColor = "#000000"
o.BackgroundColor = "#e0e0e0"
o.CornerRadius = 10
return nil
})
if err != nil {
fmt.Println("Error creating Circular:", err)
return
}
content := battery.SVG()
- v1.0.0 - initial release