go.mod replace won't cut it, converting import paths to own version

This commit is contained in:
Erik Bunn 2022-06-27 15:26:48 +02:00
parent 5bc01e79f3
commit dadc1da765
87 changed files with 103 additions and 103 deletions

View file

@ -1,7 +1,7 @@
version: 2 version: 2
jobs: jobs:
build: build:
working_directory: /go/src/github.com/wcharczuk/go-chart working_directory: /go/src/github.com/ebudan/go-chart
docker: docker:
- image: circleci/golang:1.15 - image: circleci/golang:1.15
steps: steps:

View file

@ -1,6 +1,6 @@
go-chart go-chart
======== ========
[![CircleCI](https://circleci.com/gh/wcharczuk/go-chart.svg?style=svg)](https://circleci.com/gh/wcharczuk/go-chart) [![Go Report Card](https://goreportcard.com/badge/github.com/wcharczuk/go-chart)](https://goreportcard.com/report/github.com/wcharczuk/go-chart) [![CircleCI](https://circleci.com/gh/wcharczuk/go-chart.svg?style=svg)](https://circleci.com/gh/wcharczuk/go-chart) [![Go Report Card](https://goreportcard.com/badge/github.com/ebudan/go-chart)](https://goreportcard.com/report/github.com/wcharczuk/go-chart)
Package `chart` is a very simple golang native charting library that supports timeseries and continuous line charts. Package `chart` is a very simple golang native charting library that supports timeseries and continuous line charts.
@ -11,7 +11,7 @@ Master should now be on the v3.x codebase, which overhauls the api significantly
To install `chart` run the following: To install `chart` run the following:
```bash ```bash
> go get -u github.com/wcharczuk/go-chart > go get -u github.com/ebudan/go-chart
``` ```
Most of the components are interchangeable so feel free to crib whatever you want. Most of the components are interchangeable so feel free to crib whatever you want.
@ -58,7 +58,7 @@ import (
... ...
"bytes" "bytes"
... ...
"github.com/wcharczuk/go-chart" //exposes "chart" "github.com/ebudan/go-chart" //exposes "chart"
) )
graph := chart.Chart{ graph := chart.Chart{

View file

@ -3,8 +3,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -3,8 +3,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -4,8 +4,8 @@ import (
"image/color" "image/color"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestAnnotationSeriesMeasure(t *testing.T) { func TestAnnotationSeriesMeasure(t *testing.T) {

View file

@ -5,7 +5,7 @@ import (
"math" "math"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestBarChartRender(t *testing.T) { func TestBarChartRender(t *testing.T) {

View file

@ -5,7 +5,7 @@ import (
"math" "math"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestBollingerBandSeries(t *testing.T) { func TestBollingerBandSeries(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"math" "math"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestBoxClone(t *testing.T) { func TestBoxClone(t *testing.T) {

View file

@ -8,8 +8,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestChartGetDPI(t *testing.T) { func TestChartGetDPI(t *testing.T) {

View file

@ -7,7 +7,7 @@ import (
"os" "os"
"strings" "strings"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
var ( var (

View file

@ -1,6 +1,6 @@
package chart package chart
import "github.com/wcharczuk/go-chart/v2/drawing" import "github.com/ebudan/go-chart/v2/drawing"
var ( var (
// ColorWhite is white. // ColorWhite is white.

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestConcatSeries(t *testing.T) { func TestConcatSeries(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestRangeTranslate(t *testing.T) { func TestRangeTranslate(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestContinuousSeries(t *testing.T) { func TestContinuousSeries(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestDonutChart(t *testing.T) { func TestDonutChart(t *testing.T) {

View file

@ -5,7 +5,7 @@ import (
"image/color" "image/color"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestColorFromHex(t *testing.T) { func TestColorFromHex(t *testing.T) {

View file

@ -3,7 +3,7 @@ package drawing
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
type point struct { type point struct {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
var ( var (

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,8 +5,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -8,7 +8,7 @@ import (
"os" "os"
"time" "time"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func random(min, max float64) float64 { func random(min, max float64) float64 {

View file

@ -5,7 +5,7 @@ import (
"log" "log"
"net/http" "net/http"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
// Note: Additional examples on how to add Stylesheets are in the custom_stylesheets example // Note: Additional examples on how to add Stylesheets are in the custom_stylesheets example

View file

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,8 +5,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,8 +5,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ import (
"log" "log"
"net/http" "net/http"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
const style = "svg .background { fill: white; }" + const style = "svg .background { fill: white; }" +

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"log" "log"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -9,7 +9,7 @@ import (
"strconv" "strconv"
"time" "time"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -6,7 +6,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
var lock sync.Mutex var lock sync.Mutex

View file

@ -6,8 +6,8 @@ import (
_ "net/http/pprof" _ "net/http/pprof"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func drawChart(res http.ResponseWriter, req *http.Request) { func drawChart(res http.ResponseWriter, req *http.Request) {

View file

@ -5,7 +5,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -3,7 +3,7 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -6,8 +6,8 @@ import (
"os" "os"
"time" "time"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -5,8 +5,8 @@ package main
import ( import (
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
func main() { func main() {

View file

@ -4,7 +4,7 @@ import (
"net/http" "net/http"
"time" "time"
chart "github.com/wcharczuk/go-chart/v2" chart "github.com/ebudan/go-chart/v2"
) )
func drawChart(res http.ResponseWriter, req *http.Request) { func drawChart(res http.ResponseWriter, req *http.Request) {

View file

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -7,7 +7,7 @@ import (
"log" "log"
"os" "os"
"github.com/wcharczuk/go-chart/v2" "github.com/ebudan/go-chart/v2"
) )
func main() { func main() {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestFirstValueAnnotation(t *testing.T) { func TestFirstValueAnnotation(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"sync" "sync"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/roboto" "github.com/ebudan/go-chart/v2/roboto"
) )
var ( var (

4
go.mod
View file

@ -4,8 +4,8 @@ go 1.15
require ( require (
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/wcharczuk/go-chart/v2 v2.1.0 // indirect github.com/ebudan/go-chart/v2 v2.1.0 // indirect
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 golang.org/x/image v0.0.0-20200927104501-e162460cd6b5
) )
replace github.com/wcharczuk/go-chart/v2 => ./ replace github.com/ebudan/go-chart/v2 => ./

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestGenerateGridLines(t *testing.T) { func TestGenerateGridLines(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestHistogramSeries(t *testing.T) { func TestHistogramSeries(t *testing.T) {

2
jet.go
View file

@ -1,6 +1,6 @@
package chart package chart
import "github.com/wcharczuk/go-chart/v2/drawing" import "github.com/ebudan/go-chart/v2/drawing"
// Jet is a color map provider based on matlab's jet color map. // Jet is a color map provider based on matlab's jet color map.
func Jet(v, vmin, vmax float64) drawing.Color { func Jet(v, vmin, vmax float64) drawing.Color {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestLastValueAnnotationSeries(t *testing.T) { func TestLastValueAnnotationSeries(t *testing.T) {

View file

@ -1,7 +1,7 @@
package chart package chart
import ( import (
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
// Legend returns a legend renderable function. // Legend returns a legend renderable function.

View file

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestLegend(t *testing.T) { func TestLegend(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestLinearRegressionSeries(t *testing.T) { func TestLinearRegressionSeries(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
var ( var (

View file

@ -3,7 +3,7 @@ package matrix
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestNew(t *testing.T) { func TestNew(t *testing.T) {

View file

@ -3,7 +3,7 @@ package matrix
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestPoly(t *testing.T) { func TestPoly(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestPercentageDifferenceSeries(t *testing.T) { func TestPercentageDifferenceSeries(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestPieChart(t *testing.T) { func TestPieChart(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"math" "math"
"github.com/wcharczuk/go-chart/v2/matrix" "github.com/ebudan/go-chart/v2/matrix"
) )
// Interface Assertions. // Interface Assertions.

View file

@ -3,8 +3,8 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/matrix" "github.com/ebudan/go-chart/v2/matrix"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestPolynomialRegression(t *testing.T) { func TestPolynomialRegression(t *testing.T) {

View file

@ -7,7 +7,7 @@ import (
"math" "math"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
// PNG returns a new png/raster renderer. // PNG returns a new png/raster renderer.

View file

@ -4,7 +4,7 @@ import (
"io" "io"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
// Renderer represents the basic methods required to draw a chart. // Renderer represents the basic methods required to draw a chart.

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestSeqEach(t *testing.T) { func TestSeqEach(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
type mockValuesProvider struct { type mockValuesProvider struct {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestSplitCSV(t *testing.T) { func TestSplitCSV(t *testing.T) {

View file

@ -5,7 +5,7 @@ import (
"strings" "strings"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
const ( const (

View file

@ -4,8 +4,8 @@ import (
"testing" "testing"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestStyleIsZero(t *testing.T) { func TestStyleIsZero(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestTextWrapWord(t *testing.T) { func TestTextWrapWord(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestGenerateContinuousTicks(t *testing.T) { func TestGenerateContinuousTicks(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestTimeSeriesGetValue(t *testing.T) { func TestTimeSeriesGetValue(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestBuffer(t *testing.T) { func TestBuffer(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestTimeValueFormatterWithFormat(t *testing.T) { func TestTimeValueFormatterWithFormat(t *testing.T) {

View file

@ -1,6 +1,6 @@
package chart package chart
import "github.com/wcharczuk/go-chart/v2/drawing" import "github.com/ebudan/go-chart/v2/drawing"
// ValuesProvider is a type that produces values. // ValuesProvider is a type that produces values.
type ValuesProvider interface { type ValuesProvider interface {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestValuesValues(t *testing.T) { func TestValuesValues(t *testing.T) {

View file

@ -10,7 +10,7 @@ import (
"golang.org/x/image/font" "golang.org/x/image/font"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
) )
// SVG returns a new png/raster renderer. // SVG returns a new png/raster renderer.

View file

@ -6,8 +6,8 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/drawing" "github.com/ebudan/go-chart/v2/drawing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestVectorRendererPath(t *testing.T) { func TestVectorRendererPath(t *testing.T) {

View file

@ -1,6 +1,6 @@
package chart package chart
import "github.com/wcharczuk/go-chart/v2/drawing" import "github.com/ebudan/go-chart/v2/drawing"
var viridisColors = [256]drawing.Color{ var viridisColors = [256]drawing.Color{
drawing.Color{R: 0x44, G: 0x1, B: 0x54, A: 0xff}, drawing.Color{R: 0x44, G: 0x1, B: 0x54, A: 0xff},

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestXAxisGetTicks(t *testing.T) { func TestXAxisGetTicks(t *testing.T) {

View file

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/wcharczuk/go-chart/v2/testutil" "github.com/ebudan/go-chart/v2/testutil"
) )
func TestYAxisGetTicks(t *testing.T) { func TestYAxisGetTicks(t *testing.T) {