| 123456789101112131415161718192021222324252627 |
- package main
- import (
- "os"
- "github.com/vicanso/go-charts"
- )
- func main() {
- buf, err := charts.RenderEChartsToPNG(`{
- "title": {
- "text": "Line"
- },
- "xAxis": {
- "type": "category",
- "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
- },
- "series": [
- {
- "data": [150, 230, 224, 218, 135, 147, 260]
- }
- ]
- }`)
- if err != nil {
- panic(err)
- }
- os.WriteFile("output.png", buf, 0600)
- }
|