Files
ghstats/internal/card/repos_per_language.go
T
tiennm99 cb502f2aa2 refactor: match github-profile-summary-cards chart styles
- Productive time is now a 24-hour bar chart with axes and nice tick labels
  instead of a 7x24 heatmap. Model Productive field reshaped from
  [7][24]int to [24]int.
- Language cards render as donut charts with a left-side legend instead of
  a stacked bar. Slices beyond top-6 collapse into an "Other" row.
- Add niceTicks helper (1/2/5 * 10^k ladder, d3-style) for axis ticks.
- Legacy language_bar.go removed.
2026-04-18 19:08:12 +07:00

15 lines
399 B
Go

package card
import (
"github.com/tiennm99/ghstats/internal/github"
"github.com/tiennm99/ghstats/internal/theme"
)
type reposPerLanguageCard struct{}
func (reposPerLanguageCard) Filename() string { return "1-repos-per-language.svg" }
func (reposPerLanguageCard) SVG(p *github.Profile, t theme.Theme) ([]byte, error) {
return renderDonutCard("Repos Per Language", p.ReposByLanguage, t), nil
}