mirror of
https://github.com/cf-sonr/radar.git
synced 2026-01-11 18:58:54 +00:00
23 lines
505 B
Plaintext
23 lines
505 B
Plaintext
package charts
|
|
|
|
import "fmt"
|
|
|
|
type CategoryValue struct {
|
|
Category string
|
|
Value int
|
|
ColorFrom string
|
|
ColorTo string
|
|
}
|
|
|
|
templ PieChart(data []CategoryValue) {
|
|
for _, d := range data {
|
|
<div class="flex flex-col">
|
|
<div class="flex justify-between">
|
|
<span class="text-sm font-medium text-gray-900">${ d.Category }</span>
|
|
<span class="text-sm font-medium text-gray-900">${ fmt.Sprintf("%d", d.Value) }</span>
|
|
</div>
|
|
<div class="h-1 bg-gray-200 rounded-full"></div>
|
|
</div>
|
|
}
|
|
}
|