go-chart
go-chart copied to clipboard
go chart is a basic charting library in go.
Noticed while testing go-chart in a UI with fairly frequent re-render requirements: There is no in-memory renderer that would let the user simply acquire an image.Image for display purposes. Using...
Hi there and thank you so much for this great project! I just created my first chart and was wondering if there's the ability to change the length of the...
It would be good if float.NaN values were accepted in the yseries in a continuous series. When plotting the line graph, it just needs to create a discontinuity rather than...
If the graph is constant (all Y values are the same) the constant line is not rendered
Reproduction code ``` x1 := time.Now().Add(10 * time.Second) x2 := time.Now().Add(15 * time.Second) x3 := time.Now().Add(20 * time.Second) graph := chart.Chart{ Series: []chart.Series{ chart.TimeSeries{ XValues: []time.Time{x1, x2, x3}, YValues: []float64{1.0,...
I think this was just missed, When we do TextRotationDegrees the text does not align with the bottom of the bar. This change seems to fix it.
go get github.com/wcharczuk/go-chart/v2: missing github.com/wcharczuk/go-chart/go.mod and .../v2/go.mod at revision v2.0.0-rc.1 don't get
github.com/wcharczuk/go-chart/v2 not import?????
I am looking to set a custom tick for the start time and a custom tick for the end time, with no ticks between them. The problem is that a...
Rendering a pie chart with the following values does not return an image at all. ``` []chart.Value{{Value: 0, Label: "Critical"}} ``` go.mod: `github.com/wcharczuk/go-chart/v2 v2.1.0` Expected result: An image with an...