在 Golang 这门语言中,目前数据可视化的第三方库还是特别少,go-echarts
的开发就是为了填补这部分的空隙。Echarts
是百度开源的非常优秀的可视化图表库,凭借着良好的交互性,精巧的图表设计,得到了众多开发者的认可。也有其他语言为其实现了相应语言版本的接口,如 Python 的pyecharts
,go-echarts
也是借鉴了pyecharts
的一些设计思想。
特性
-
简洁的 API 设计,使用如丝滑般流畅
-
囊括了 25+ 种常见图表,应有尽有
-
高度灵活的配置项,可轻松搭配出精美的图表
-
详细的文档和示例,帮助开发者更快的上手项目
-
多达 400+ 地图,为地理数据可视化提供强有力的支持
网上的都有坑,时间比较久。
[go-echarts]
https://github.com/go-echarts/go-echarts
[go-echarts/examples]
https://github.com/go-echarts/examples
git clone 一下。
注意改main.go 里边的路径
"github.com/go-echarts/examples/examples"
go-echarts-examples
This project provides some examples to show how to use go-echarts.
Usage
$ git clone https://github.com/go-echarts/examples.git
$ cd examples && go run .
Now visit http://localhost:8089 in your browser and there are variety of charts, such as bar
, line
, pie
, radaer
, etc.
for more charts detailed, please refer to ./examples folder.
最后是这样: