diff --git a/src/graphs/commit_chart.go b/src/graphs/commit_chart.go index 0c64ad6..e5c5506 100644 --- a/src/graphs/commit_chart.go +++ b/src/graphs/commit_chart.go @@ -59,8 +59,8 @@ func DrawCommitChart(commitsHistory []int, maxCommits int, width int, height int // ラベルの外に余白を持つ p.Title.Padding = 10 // タイトル周りの余白 - p.X.Label.Padding = 10 // X軸ラベル周りの余白 - p.Y.Label.Padding = 10 // Y軸ラベル周りの余白 + p.X.Label.Padding = 2 // X軸ラベル周りの余白 + p.Y.Label.Padding = 2 // Y軸ラベル周りの余白 // DefaultTextHandler is the default text handler used for text processing. diff --git a/src/images/commits_history.png b/src/images/commits_history.png index 4f2798a..9c49c19 100644 Binary files a/src/images/commits_history.png and b/src/images/commits_history.png differ diff --git a/src/images/gauge.png b/src/images/gauge.png index 23dc061..efd0d2c 100644 Binary files a/src/images/gauge.png and b/src/images/gauge.png differ diff --git a/src/images/generate_character.png b/src/images/generate_character.png index 89b6a23..af316e0 100644 Binary files a/src/images/generate_character.png and b/src/images/generate_character.png differ diff --git a/src/images/stats.png b/src/images/stats.png index 8be0e0d..3568103 100644 Binary files a/src/images/stats.png and b/src/images/stats.png differ diff --git a/src/main.go b/src/main.go index ca9ece6..2225e77 100644 --- a/src/main.go +++ b/src/main.go @@ -5,6 +5,8 @@ import ( "log" "net/http" "strconv" + "github.com/tomoish/readme/funcs" + "github.com/tomoish/readme/graphs" ) // func handler(w http.ResponseWriter, r *http.Request) { diff --git a/src/result.png b/src/result.png index 644b51c..3bccc7a 100644 Binary files a/src/result.png and b/src/result.png differ