kevincobain2000 / go-progress-svg

Generate pure SVG circle progress bar or flat progress bars in GO.

Home Page:https://progress-svg.coveritup.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SVG - Circle, Bar & Battery progress generator
in Golang.

svg circle progress sample

svg circle progress sample

svg circle progress sample


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

go-build-time coverage

go-lint-errors go-test-run-time

npm-install-time npm-build-time

go-mod-dependencies

go-lint-errors go-test-run-time go-build-time coverage go-mod-dependencies

npm-install-time npm-build-time

Usage

Circle Progress

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()
}

Bar Progress

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 Progress

	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()

CHANGE LOG

  • v1.0.0 - initial release

About

Generate pure SVG circle progress bar or flat progress bars in GO.

https://progress-svg.coveritup.app


Languages

Language:Go 53.6%Language:Astro 45.4%Language:JavaScript 0.9%Language:Shell 0.2%