jonpchin / gochess

Online real time chess web server using websockets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in plot.go: undefined: chart.StyleShow

jingwenw opened this issue · comments

Error in the function name?

github.com/jonpchin/gochess/gostuff

../../go/src/github.com/jonpchin/gochess/gostuff/plot.go:104:15: undefined: chart.StyleShow
../../go/src/github.com/jonpchin/gochess/gostuff/plot.go:105:15: undefined: chart.StyleShow
../../go/src/github.com/jonpchin/gochess/gostuff/plot.go:109:15: undefined: chart.StyleShow
../../go/src/github.com/jonpchin/gochess/gostuff/plot.go:110:15: undefined: chart.StyleShow
james@ip-172-31-29-166:~/myRepos/gochess$ emacs ../../go/src/github.com/jonpchin/gochess/gostuff/plot.go

Thanks,
James

commented

This is because https://github.com/wcharczuk/go-chart updated their repo and their change is not backwards compatible and it broke something in this repo.

One solution is to check out that go-chart library from October 6 2018 and then it should work. Or I could have this project support the updated go-chart library.

Thanks for the response.