diff --git a/.gitignore b/.gitignore index 3e4b6e1..8339fa7 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ # Other .vscode .DS_Store -coverage.html \ No newline at end of file +coverage.html +.idea/ diff --git a/_examples/horizontal_stacked_bar/main.go b/_examples/horizontal_stacked_bar/main.go index 5151524..772dc16 100644 --- a/_examples/horizontal_stacked_bar/main.go +++ b/_examples/horizontal_stacked_bar/main.go @@ -1,10 +1,9 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/_examples/stacked_bar_labels/main.go b/_examples/stacked_bar_labels/main.go index a62103f..bbcc330 100644 --- a/_examples/stacked_bar_labels/main.go +++ b/_examples/stacked_bar_labels/main.go @@ -1,10 +1,9 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/cmd/chart/main.go b/cmd/chart/main.go index 82ed907..28c52a6 100644 --- a/cmd/chart/main.go +++ b/cmd/chart/main.go @@ -3,11 +3,10 @@ package main import ( "flag" "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "io/ioutil" "os" "strings" - - "github.com/wcharczuk/go-chart/v2" ) var ( diff --git a/examples/annotations/main.go b/examples/annotations/main.go index 20bf01f..4f58d81 100644 --- a/examples/annotations/main.go +++ b/examples/annotations/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/axes/main.go b/examples/axes/main.go index a675bde..d721386 100644 --- a/examples/axes/main.go +++ b/examples/axes/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - chart "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/axes_labels/main.go b/examples/axes_labels/main.go index a68ac34..73905bf 100644 --- a/examples/axes_labels/main.go +++ b/examples/axes_labels/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - chart "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/bar_chart/main.go b/examples/bar_chart/main.go index 2a7895f..ff349f9 100644 --- a/examples/bar_chart/main.go +++ b/examples/bar_chart/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/bar_chart_base_value/main.go b/examples/bar_chart_base_value/main.go index f17b6b8..177a561 100644 --- a/examples/bar_chart_base_value/main.go +++ b/examples/bar_chart_base_value/main.go @@ -3,10 +3,9 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/examples/basic/main.go b/examples/basic/main.go index aeca5a8..ea465fb 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/benchmark_line_charts/main.go b/examples/benchmark_line_charts/main.go index 1a70417..1051423 100644 --- a/examples/benchmark_line_charts/main.go +++ b/examples/benchmark_line_charts/main.go @@ -4,11 +4,10 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "math/rand" "os" "time" - - "github.com/wcharczuk/go-chart/v2" ) func random(min, max float64) float64 { diff --git a/examples/css_classes/main.go b/examples/css_classes/main.go index b5e65cf..62696c5 100644 --- a/examples/css_classes/main.go +++ b/examples/css_classes/main.go @@ -2,10 +2,9 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "log" "net/http" - - "github.com/wcharczuk/go-chart/v2" ) // Note: Additional examples on how to add Stylesheets are in the custom_stylesheets example diff --git a/examples/custom_formatters/main.go b/examples/custom_formatters/main.go index d2b6b90..a37b374 100644 --- a/examples/custom_formatters/main.go +++ b/examples/custom_formatters/main.go @@ -4,9 +4,8 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/custom_padding/main.go b/examples/custom_padding/main.go index 14c23ec..db4a9a1 100644 --- a/examples/custom_padding/main.go +++ b/examples/custom_padding/main.go @@ -3,10 +3,9 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/examples/custom_ranges/main.go b/examples/custom_ranges/main.go index 61ef67b..ea804bf 100644 --- a/examples/custom_ranges/main.go +++ b/examples/custom_ranges/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/custom_styles/main.go b/examples/custom_styles/main.go index 08889ea..fc3cad4 100644 --- a/examples/custom_styles/main.go +++ b/examples/custom_styles/main.go @@ -3,10 +3,9 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/examples/custom_stylesheets/main.go b/examples/custom_stylesheets/main.go index 1af1058..fb9f912 100644 --- a/examples/custom_stylesheets/main.go +++ b/examples/custom_stylesheets/main.go @@ -2,10 +2,9 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "log" "net/http" - - "github.com/wcharczuk/go-chart/v2" ) const style = "svg .background { fill: white; }" + diff --git a/examples/custom_ticks/main.go b/examples/custom_ticks/main.go index f95f64d..0eb9803 100644 --- a/examples/custom_ticks/main.go +++ b/examples/custom_ticks/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/descending/main.go b/examples/descending/main.go index 62ae7f7..d9d770f 100644 --- a/examples/descending/main.go +++ b/examples/descending/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/donut_chart/main.go b/examples/donut_chart/main.go index 8b504ad..11fe9fc 100644 --- a/examples/donut_chart/main.go +++ b/examples/donut_chart/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/image_writer/main.go b/examples/image_writer/main.go index 4981d21..8d1a1cc 100644 --- a/examples/image_writer/main.go +++ b/examples/image_writer/main.go @@ -2,9 +2,8 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "log" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/legend/main.go b/examples/legend/main.go index 83b5665..88c6874 100644 --- a/examples/legend/main.go +++ b/examples/legend/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - chart "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/legend_left/main.go b/examples/legend_left/main.go index a6dc413..cd9d48f 100644 --- a/examples/legend_left/main.go +++ b/examples/legend_left/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/linear_regression/main.go b/examples/linear_regression/main.go index ebe0125..c340489 100644 --- a/examples/linear_regression/main.go +++ b/examples/linear_regression/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - chart "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/min_max/main.go b/examples/min_max/main.go index f2c5479..cb0fd07 100644 --- a/examples/min_max/main.go +++ b/examples/min_max/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/pie_chart/main.go b/examples/pie_chart/main.go index 5bd7c3f..a34efd3 100644 --- a/examples/pie_chart/main.go +++ b/examples/pie_chart/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/poly_regression/main.go b/examples/poly_regression/main.go index 040fcc0..23c1bb6 100644 --- a/examples/poly_regression/main.go +++ b/examples/poly_regression/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - chart "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/request_timings/main.go b/examples/request_timings/main.go index 9ca0159..c5cef9a 100644 --- a/examples/request_timings/main.go +++ b/examples/request_timings/main.go @@ -4,12 +4,11 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "net/http" "os" "strconv" "time" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/rerender/main.go b/examples/rerender/main.go index 155486b..c350939 100644 --- a/examples/rerender/main.go +++ b/examples/rerender/main.go @@ -1,12 +1,11 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "log" "net/http" "sync" "time" - - "github.com/wcharczuk/go-chart/v2" ) var lock sync.Mutex diff --git a/examples/scatter/main.go b/examples/scatter/main.go index b9ce850..38b3d7b 100644 --- a/examples/scatter/main.go +++ b/examples/scatter/main.go @@ -1,13 +1,12 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "log" "net/http" _ "net/http/pprof" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/examples/simple_moving_average/main.go b/examples/simple_moving_average/main.go index 742d15c..a317b2a 100644 --- a/examples/simple_moving_average/main.go +++ b/examples/simple_moving_average/main.go @@ -3,9 +3,8 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/stacked_bar/main.go b/examples/stacked_bar/main.go index b9537e3..446868e 100644 --- a/examples/stacked_bar/main.go +++ b/examples/stacked_bar/main.go @@ -1,9 +1,8 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/stock_analysis/main.go b/examples/stock_analysis/main.go index b7ccadc..f50f6bc 100644 --- a/examples/stock_analysis/main.go +++ b/examples/stock_analysis/main.go @@ -3,11 +3,10 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" "time" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/examples/text_rotation/main.go b/examples/text_rotation/main.go index 28fe0ab..c07b44d 100644 --- a/examples/text_rotation/main.go +++ b/examples/text_rotation/main.go @@ -3,10 +3,9 @@ package main //go:generate go run main.go import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "os" - - "github.com/wcharczuk/go-chart/v2" - "github.com/wcharczuk/go-chart/v2/drawing" ) func main() { diff --git a/examples/timeseries/main.go b/examples/timeseries/main.go index 1540ccd..6a85a54 100644 --- a/examples/timeseries/main.go +++ b/examples/timeseries/main.go @@ -1,10 +1,9 @@ package main import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "net/http" "time" - - chart "github.com/wcharczuk/go-chart/v2" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/examples/twoaxis/main.go b/examples/twoaxis/main.go index d86f362..c704747 100644 --- a/examples/twoaxis/main.go +++ b/examples/twoaxis/main.go @@ -4,9 +4,8 @@ package main import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/examples/twopoint/main.go b/examples/twopoint/main.go index ad46905..491a2ce 100644 --- a/examples/twopoint/main.go +++ b/examples/twopoint/main.go @@ -4,10 +4,9 @@ package main import ( "bytes" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/chart" "log" "os" - - "github.com/wcharczuk/go-chart/v2" ) func main() { diff --git a/go.mod b/go.mod index 3824b21..d0365b9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/wcharczuk/go-chart/v2 +module github.com/d-Rickyy-b/go-chart-x/v2 go 1.15 diff --git a/annotation_series.go b/pkg/chart/annotation_series.go similarity index 100% rename from annotation_series.go rename to pkg/chart/annotation_series.go diff --git a/annotation_series_test.go b/pkg/chart/annotation_series_test.go similarity index 95% rename from annotation_series_test.go rename to pkg/chart/annotation_series_test.go index 1a33900..f1c0ce4 100644 --- a/annotation_series_test.go +++ b/pkg/chart/annotation_series_test.go @@ -1,11 +1,11 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "image/color" "testing" - "github.com/wcharczuk/go-chart/v2/drawing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestAnnotationSeriesMeasure(t *testing.T) { diff --git a/array.go b/pkg/chart/array.go similarity index 100% rename from array.go rename to pkg/chart/array.go diff --git a/axis.go b/pkg/chart/axis.go similarity index 100% rename from axis.go rename to pkg/chart/axis.go diff --git a/bar_chart.go b/pkg/chart/bar_chart.go similarity index 100% rename from bar_chart.go rename to pkg/chart/bar_chart.go diff --git a/bar_chart_test.go b/pkg/chart/bar_chart_test.go similarity index 99% rename from bar_chart_test.go rename to pkg/chart/bar_chart_test.go index e62ef83..72a4161 100644 --- a/bar_chart_test.go +++ b/pkg/chart/bar_chart_test.go @@ -5,7 +5,7 @@ import ( "math" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestBarChartRender(t *testing.T) { diff --git a/bollinger_band_series.go b/pkg/chart/bollinger_band_series.go similarity index 100% rename from bollinger_band_series.go rename to pkg/chart/bollinger_band_series.go diff --git a/bollinger_band_series_test.go b/pkg/chart/bollinger_band_series_test.go similarity index 95% rename from bollinger_band_series_test.go rename to pkg/chart/bollinger_band_series_test.go index b33b0ec..f2eef8d 100644 --- a/bollinger_band_series_test.go +++ b/pkg/chart/bollinger_band_series_test.go @@ -5,7 +5,7 @@ import ( "math" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestBollingerBandSeries(t *testing.T) { diff --git a/bounded_last_values_annotation_series.go b/pkg/chart/bounded_last_values_annotation_series.go similarity index 100% rename from bounded_last_values_annotation_series.go rename to pkg/chart/bounded_last_values_annotation_series.go diff --git a/box.go b/pkg/chart/box.go similarity index 100% rename from box.go rename to pkg/chart/box.go diff --git a/box_test.go b/pkg/chart/box_test.go similarity index 99% rename from box_test.go rename to pkg/chart/box_test.go index e62d5b7..063de8b 100644 --- a/box_test.go +++ b/pkg/chart/box_test.go @@ -4,7 +4,7 @@ import ( "math" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestBoxClone(t *testing.T) { diff --git a/chart.go b/pkg/chart/chart.go similarity index 100% rename from chart.go rename to pkg/chart/chart.go diff --git a/chart_test.go b/pkg/chart/chart_test.go similarity index 99% rename from chart_test.go rename to pkg/chart/chart_test.go index 8026848..2c4ecb1 100644 --- a/chart_test.go +++ b/pkg/chart/chart_test.go @@ -2,14 +2,14 @@ package chart import ( "bytes" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "image" "image/png" "math" "testing" "time" - "github.com/wcharczuk/go-chart/v2/drawing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestChartGetDPI(t *testing.T) { diff --git a/colors.go b/pkg/chart/colors.go similarity index 98% rename from colors.go rename to pkg/chart/colors.go index b51f9ea..d8fe043 100644 --- a/colors.go +++ b/pkg/chart/colors.go @@ -1,6 +1,8 @@ package chart -import "github.com/wcharczuk/go-chart/v2/drawing" +import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" +) var ( // ColorWhite is white. diff --git a/concat_series.go b/pkg/chart/concat_series.go similarity index 100% rename from concat_series.go rename to pkg/chart/concat_series.go diff --git a/concat_series_test.go b/pkg/chart/concat_series_test.go similarity index 94% rename from concat_series_test.go rename to pkg/chart/concat_series_test.go index 9424fb2..9f148cf 100644 --- a/concat_series_test.go +++ b/pkg/chart/concat_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestConcatSeries(t *testing.T) { diff --git a/continuous_range.go b/pkg/chart/continuous_range.go similarity index 100% rename from continuous_range.go rename to pkg/chart/continuous_range.go diff --git a/continuous_range_test.go b/pkg/chart/continuous_range_test.go similarity index 90% rename from continuous_range_test.go rename to pkg/chart/continuous_range_test.go index 5d0f436..acdf1b0 100644 --- a/continuous_range_test.go +++ b/pkg/chart/continuous_range_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestRangeTranslate(t *testing.T) { diff --git a/continuous_series.go b/pkg/chart/continuous_series.go similarity index 100% rename from continuous_series.go rename to pkg/chart/continuous_series.go diff --git a/continuous_series_test.go b/pkg/chart/continuous_series_test.go similarity index 97% rename from continuous_series_test.go rename to pkg/chart/continuous_series_test.go index 783c236..5b759fd 100644 --- a/continuous_series_test.go +++ b/pkg/chart/continuous_series_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestContinuousSeries(t *testing.T) { diff --git a/defaults.go b/pkg/chart/defaults.go similarity index 100% rename from defaults.go rename to pkg/chart/defaults.go diff --git a/donut_chart.go b/pkg/chart/donut_chart.go similarity index 100% rename from donut_chart.go rename to pkg/chart/donut_chart.go diff --git a/donut_chart_test.go b/pkg/chart/donut_chart_test.go similarity index 96% rename from donut_chart_test.go rename to pkg/chart/donut_chart_test.go index 388f65d..d6953ab 100644 --- a/donut_chart_test.go +++ b/pkg/chart/donut_chart_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestDonutChart(t *testing.T) { diff --git a/draw.go b/pkg/chart/draw.go similarity index 100% rename from draw.go rename to pkg/chart/draw.go diff --git a/ema_series.go b/pkg/chart/ema_series.go similarity index 100% rename from ema_series.go rename to pkg/chart/ema_series.go diff --git a/ema_series_test.go b/pkg/chart/ema_series_test.go similarity index 97% rename from ema_series_test.go rename to pkg/chart/ema_series_test.go index 184319b..2c0d8eb 100644 --- a/ema_series_test.go +++ b/pkg/chart/ema_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) var ( diff --git a/fileutil.go b/pkg/chart/fileutil.go similarity index 100% rename from fileutil.go rename to pkg/chart/fileutil.go diff --git a/first_value_annotation.go b/pkg/chart/first_value_annotation.go similarity index 100% rename from first_value_annotation.go rename to pkg/chart/first_value_annotation.go diff --git a/first_value_annotation_test.go b/pkg/chart/first_value_annotation_test.go similarity index 90% rename from first_value_annotation_test.go rename to pkg/chart/first_value_annotation_test.go index 3675763..0a6d05a 100644 --- a/first_value_annotation_test.go +++ b/pkg/chart/first_value_annotation_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestFirstValueAnnotation(t *testing.T) { diff --git a/font.go b/pkg/chart/font.go similarity index 91% rename from font.go rename to pkg/chart/font.go index 401143b..a12f46a 100644 --- a/font.go +++ b/pkg/chart/font.go @@ -1,10 +1,10 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/roboto" "sync" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/roboto" ) var ( diff --git a/grid_line.go b/pkg/chart/grid_line.go similarity index 100% rename from grid_line.go rename to pkg/chart/grid_line.go diff --git a/grid_line_test.go b/pkg/chart/grid_line_test.go similarity index 89% rename from grid_line_test.go rename to pkg/chart/grid_line_test.go index 0e96d91..bedb2da 100644 --- a/grid_line_test.go +++ b/pkg/chart/grid_line_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestGenerateGridLines(t *testing.T) { diff --git a/histogram_series.go b/pkg/chart/histogram_series.go similarity index 100% rename from histogram_series.go rename to pkg/chart/histogram_series.go diff --git a/histogram_series_test.go b/pkg/chart/histogram_series_test.go similarity index 92% rename from histogram_series_test.go rename to pkg/chart/histogram_series_test.go index ff0ee54..437d72e 100644 --- a/histogram_series_test.go +++ b/pkg/chart/histogram_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestHistogramSeries(t *testing.T) { diff --git a/image_writer.go b/pkg/chart/image_writer.go similarity index 100% rename from image_writer.go rename to pkg/chart/image_writer.go diff --git a/jet.go b/pkg/chart/jet.go similarity index 91% rename from jet.go rename to pkg/chart/jet.go index cce8c85..557ac35 100644 --- a/jet.go +++ b/pkg/chart/jet.go @@ -1,6 +1,8 @@ package chart -import "github.com/wcharczuk/go-chart/v2/drawing" +import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" +) // Jet is a color map provider based on matlab's jet color map. func Jet(v, vmin, vmax float64) drawing.Color { diff --git a/last_value_annotation_series.go b/pkg/chart/last_value_annotation_series.go similarity index 100% rename from last_value_annotation_series.go rename to pkg/chart/last_value_annotation_series.go diff --git a/last_value_annotation_series_test.go b/pkg/chart/last_value_annotation_series_test.go similarity index 90% rename from last_value_annotation_series_test.go rename to pkg/chart/last_value_annotation_series_test.go index 59fc1b3..499f6f2 100644 --- a/last_value_annotation_series_test.go +++ b/pkg/chart/last_value_annotation_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestLastValueAnnotationSeries(t *testing.T) { diff --git a/legend.go b/pkg/chart/legend.go similarity index 99% rename from legend.go rename to pkg/chart/legend.go index 7f1c13f..7869049 100644 --- a/legend.go +++ b/pkg/chart/legend.go @@ -1,7 +1,7 @@ package chart import ( - "github.com/wcharczuk/go-chart/v2/drawing" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" ) // Legend returns a legend renderable function. diff --git a/legend_test.go b/pkg/chart/legend_test.go similarity index 92% rename from legend_test.go rename to pkg/chart/legend_test.go index cfc9cfa..7fd480f 100644 --- a/legend_test.go +++ b/pkg/chart/legend_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestLegend(t *testing.T) { diff --git a/linear_coefficient_provider.go b/pkg/chart/linear_coefficient_provider.go similarity index 100% rename from linear_coefficient_provider.go rename to pkg/chart/linear_coefficient_provider.go diff --git a/linear_regression_series.go b/pkg/chart/linear_regression_series.go similarity index 100% rename from linear_regression_series.go rename to pkg/chart/linear_regression_series.go diff --git a/linear_regression_series_test.go b/pkg/chart/linear_regression_series_test.go similarity index 97% rename from linear_regression_series_test.go rename to pkg/chart/linear_regression_series_test.go index 3c13d1c..419aec3 100644 --- a/linear_regression_series_test.go +++ b/pkg/chart/linear_regression_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestLinearRegressionSeries(t *testing.T) { diff --git a/linear_sequence.go b/pkg/chart/linear_sequence.go similarity index 100% rename from linear_sequence.go rename to pkg/chart/linear_sequence.go diff --git a/linear_series.go b/pkg/chart/linear_series.go similarity index 100% rename from linear_series.go rename to pkg/chart/linear_series.go diff --git a/logger.go b/pkg/chart/logger.go similarity index 100% rename from logger.go rename to pkg/chart/logger.go diff --git a/macd_series.go b/pkg/chart/macd_series.go similarity index 100% rename from macd_series.go rename to pkg/chart/macd_series.go diff --git a/macd_series_test.go b/pkg/chart/macd_series_test.go similarity index 96% rename from macd_series_test.go rename to pkg/chart/macd_series_test.go index 6471f6d..16eab03 100644 --- a/macd_series_test.go +++ b/pkg/chart/macd_series_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) var ( diff --git a/mathutil.go b/pkg/chart/mathutil.go similarity index 100% rename from mathutil.go rename to pkg/chart/mathutil.go diff --git a/min_max_series.go b/pkg/chart/min_max_series.go similarity index 100% rename from min_max_series.go rename to pkg/chart/min_max_series.go diff --git a/parse.go b/pkg/chart/parse.go similarity index 100% rename from parse.go rename to pkg/chart/parse.go diff --git a/percent_change_series.go b/pkg/chart/percent_change_series.go similarity index 100% rename from percent_change_series.go rename to pkg/chart/percent_change_series.go diff --git a/percent_change_series_test.go b/pkg/chart/percent_change_series_test.go similarity index 93% rename from percent_change_series_test.go rename to pkg/chart/percent_change_series_test.go index dbc9413..db85398 100644 --- a/percent_change_series_test.go +++ b/pkg/chart/percent_change_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestPercentageDifferenceSeries(t *testing.T) { diff --git a/pie_chart.go b/pkg/chart/pie_chart.go similarity index 100% rename from pie_chart.go rename to pkg/chart/pie_chart.go diff --git a/pie_chart_test.go b/pkg/chart/pie_chart_test.go similarity index 96% rename from pie_chart_test.go rename to pkg/chart/pie_chart_test.go index 1d9f17a..7e8d889 100644 --- a/pie_chart_test.go +++ b/pkg/chart/pie_chart_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestPieChart(t *testing.T) { diff --git a/polynomial_regression_series.go b/pkg/chart/polynomial_regression_series.go similarity index 98% rename from polynomial_regression_series.go rename to pkg/chart/polynomial_regression_series.go index 22cd3c1..173fad0 100644 --- a/polynomial_regression_series.go +++ b/pkg/chart/polynomial_regression_series.go @@ -2,9 +2,8 @@ package chart import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/matrix" "math" - - "github.com/wcharczuk/go-chart/v2/matrix" ) // Interface Assertions. diff --git a/polynomial_regression_test.go b/pkg/chart/polynomial_regression_test.go similarity index 84% rename from polynomial_regression_test.go rename to pkg/chart/polynomial_regression_test.go index 8535c74..1d1e8f2 100644 --- a/polynomial_regression_test.go +++ b/pkg/chart/polynomial_regression_test.go @@ -1,10 +1,10 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/matrix" "testing" - "github.com/wcharczuk/go-chart/v2/matrix" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestPolynomialRegression(t *testing.T) { diff --git a/random_sequence.go b/pkg/chart/random_sequence.go similarity index 100% rename from random_sequence.go rename to pkg/chart/random_sequence.go diff --git a/range.go b/pkg/chart/range.go similarity index 100% rename from range.go rename to pkg/chart/range.go diff --git a/raster_renderer.go b/pkg/chart/raster_renderer.go similarity index 99% rename from raster_renderer.go rename to pkg/chart/raster_renderer.go index 4de2655..007eb11 100644 --- a/raster_renderer.go +++ b/pkg/chart/raster_renderer.go @@ -1,13 +1,13 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "image" "image/png" "io" "math" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/drawing" ) // PNG returns a new png/raster renderer. diff --git a/renderable.go b/pkg/chart/renderable.go similarity index 100% rename from renderable.go rename to pkg/chart/renderable.go diff --git a/renderer.go b/pkg/chart/renderer.go similarity index 97% rename from renderer.go rename to pkg/chart/renderer.go index 589c773..d6267e6 100644 --- a/renderer.go +++ b/pkg/chart/renderer.go @@ -1,10 +1,10 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "io" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/drawing" ) // Renderer represents the basic methods required to draw a chart. diff --git a/renderer_provider.go b/pkg/chart/renderer_provider.go similarity index 100% rename from renderer_provider.go rename to pkg/chart/renderer_provider.go diff --git a/seq.go b/pkg/chart/seq.go similarity index 100% rename from seq.go rename to pkg/chart/seq.go diff --git a/seq_test.go b/pkg/chart/seq_test.go similarity index 98% rename from seq_test.go rename to pkg/chart/seq_test.go index 3cd7f9c..9e3aeba 100644 --- a/seq_test.go +++ b/pkg/chart/seq_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestSeqEach(t *testing.T) { diff --git a/series.go b/pkg/chart/series.go similarity index 100% rename from series.go rename to pkg/chart/series.go diff --git a/sma_series.go b/pkg/chart/sma_series.go similarity index 100% rename from sma_series.go rename to pkg/chart/sma_series.go diff --git a/sma_series_test.go b/pkg/chart/sma_series_test.go similarity index 98% rename from sma_series_test.go rename to pkg/chart/sma_series_test.go index 5de32a9..4674186 100644 --- a/sma_series_test.go +++ b/pkg/chart/sma_series_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) type mockValuesProvider struct { diff --git a/stacked_bar_chart.go b/pkg/chart/stacked_bar_chart.go similarity index 100% rename from stacked_bar_chart.go rename to pkg/chart/stacked_bar_chart.go diff --git a/stringutil.go b/pkg/chart/stringutil.go similarity index 100% rename from stringutil.go rename to pkg/chart/stringutil.go diff --git a/stringutil_test.go b/pkg/chart/stringutil_test.go similarity index 94% rename from stringutil_test.go rename to pkg/chart/stringutil_test.go index bc22b23..6d2d3e4 100644 --- a/stringutil_test.go +++ b/pkg/chart/stringutil_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestSplitCSV(t *testing.T) { diff --git a/style.go b/pkg/chart/style.go similarity index 99% rename from style.go rename to pkg/chart/style.go index c601d6d..06bb6eb 100644 --- a/style.go +++ b/pkg/chart/style.go @@ -2,10 +2,10 @@ package chart import ( "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "strings" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/drawing" ) const ( diff --git a/style_test.go b/pkg/chart/style_test.go similarity index 98% rename from style_test.go rename to pkg/chart/style_test.go index 5cc1c08..96e8402 100644 --- a/style_test.go +++ b/pkg/chart/style_test.go @@ -1,11 +1,11 @@ package chart import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "testing" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/drawing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestStyleIsZero(t *testing.T) { diff --git a/text.go b/pkg/chart/text.go similarity index 100% rename from text.go rename to pkg/chart/text.go diff --git a/text_test.go b/pkg/chart/text_test.go similarity index 97% rename from text_test.go rename to pkg/chart/text_test.go index 4f1e209..1be4f26 100644 --- a/text_test.go +++ b/pkg/chart/text_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestTextWrapWord(t *testing.T) { diff --git a/tick.go b/pkg/chart/tick.go similarity index 100% rename from tick.go rename to pkg/chart/tick.go diff --git a/tick_test.go b/pkg/chart/tick_test.go similarity index 96% rename from tick_test.go rename to pkg/chart/tick_test.go index 9ea0ef2..7e78742 100644 --- a/tick_test.go +++ b/pkg/chart/tick_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestGenerateContinuousTicks(t *testing.T) { diff --git a/time_series.go b/pkg/chart/time_series.go similarity index 100% rename from time_series.go rename to pkg/chart/time_series.go diff --git a/time_series_test.go b/pkg/chart/time_series_test.go similarity index 96% rename from time_series_test.go rename to pkg/chart/time_series_test.go index 3f65eaf..c7e4060 100644 --- a/time_series_test.go +++ b/pkg/chart/time_series_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestTimeSeriesGetValue(t *testing.T) { diff --git a/times.go b/pkg/chart/times.go similarity index 100% rename from times.go rename to pkg/chart/times.go diff --git a/timeutil.go b/pkg/chart/timeutil.go similarity index 100% rename from timeutil.go rename to pkg/chart/timeutil.go diff --git a/value.go b/pkg/chart/value.go similarity index 100% rename from value.go rename to pkg/chart/value.go diff --git a/value_buffer.go b/pkg/chart/value_buffer.go similarity index 100% rename from value_buffer.go rename to pkg/chart/value_buffer.go diff --git a/value_buffer_test.go b/pkg/chart/value_buffer_test.go similarity index 99% rename from value_buffer_test.go rename to pkg/chart/value_buffer_test.go index e8aa9a0..4ad3772 100644 --- a/value_buffer_test.go +++ b/pkg/chart/value_buffer_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestBuffer(t *testing.T) { diff --git a/value_formatter.go b/pkg/chart/value_formatter.go similarity index 100% rename from value_formatter.go rename to pkg/chart/value_formatter.go diff --git a/value_formatter_provider.go b/pkg/chart/value_formatter_provider.go similarity index 100% rename from value_formatter_provider.go rename to pkg/chart/value_formatter_provider.go diff --git a/value_formatter_test.go b/pkg/chart/value_formatter_test.go similarity index 96% rename from value_formatter_test.go rename to pkg/chart/value_formatter_test.go index d9ffaef..f8e054c 100644 --- a/value_formatter_test.go +++ b/pkg/chart/value_formatter_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestTimeValueFormatterWithFormat(t *testing.T) { diff --git a/value_provider.go b/pkg/chart/value_provider.go similarity index 96% rename from value_provider.go rename to pkg/chart/value_provider.go index be985eb..c15283d 100644 --- a/value_provider.go +++ b/pkg/chart/value_provider.go @@ -1,6 +1,6 @@ package chart -import "github.com/wcharczuk/go-chart/v2/drawing" +import "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" // ValuesProvider is a type that produces values. type ValuesProvider interface { diff --git a/value_test.go b/pkg/chart/value_test.go similarity index 97% rename from value_test.go rename to pkg/chart/value_test.go index 1c12ce7..d0ee243 100644 --- a/value_test.go +++ b/pkg/chart/value_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestValuesValues(t *testing.T) { diff --git a/vector_renderer.go b/pkg/chart/vector_renderer.go similarity index 99% rename from vector_renderer.go rename to pkg/chart/vector_renderer.go index eb2fc83..8ff3f0b 100644 --- a/vector_renderer.go +++ b/pkg/chart/vector_renderer.go @@ -3,6 +3,7 @@ package chart import ( "bytes" "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "io" "math" "strings" @@ -10,7 +11,6 @@ import ( "golang.org/x/image/font" "github.com/golang/freetype/truetype" - "github.com/wcharczuk/go-chart/v2/drawing" ) // SVG returns a new png/raster renderer. diff --git a/vector_renderer_test.go b/pkg/chart/vector_renderer_test.go similarity index 96% rename from vector_renderer_test.go rename to pkg/chart/vector_renderer_test.go index 019c6b9..c67e115 100644 --- a/vector_renderer_test.go +++ b/pkg/chart/vector_renderer_test.go @@ -3,11 +3,11 @@ package chart import ( "bytes" "fmt" + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" "strings" "testing" - "github.com/wcharczuk/go-chart/v2/drawing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestVectorRendererPath(t *testing.T) { diff --git a/viridis.go b/pkg/chart/viridis.go similarity index 99% rename from viridis.go rename to pkg/chart/viridis.go index 4234319..be52225 100644 --- a/viridis.go +++ b/pkg/chart/viridis.go @@ -1,6 +1,8 @@ package chart -import "github.com/wcharczuk/go-chart/v2/drawing" +import ( + "github.com/d-Rickyy-b/go-chart-x/v2/pkg/drawing" +) var viridisColors = [256]drawing.Color{ drawing.Color{R: 0x44, G: 0x1, B: 0x54, A: 0xff}, diff --git a/xaxis.go b/pkg/chart/xaxis.go similarity index 100% rename from xaxis.go rename to pkg/chart/xaxis.go diff --git a/xaxis_test.go b/pkg/chart/xaxis_test.go similarity index 96% rename from xaxis_test.go rename to pkg/chart/xaxis_test.go index 6d05d53..9b9e8e2 100644 --- a/xaxis_test.go +++ b/pkg/chart/xaxis_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestXAxisGetTicks(t *testing.T) { diff --git a/yaxis.go b/pkg/chart/yaxis.go similarity index 100% rename from yaxis.go rename to pkg/chart/yaxis.go diff --git a/yaxis_test.go b/pkg/chart/yaxis_test.go similarity index 97% rename from yaxis_test.go rename to pkg/chart/yaxis_test.go index 754f4e0..8c508cf 100644 --- a/yaxis_test.go +++ b/pkg/chart/yaxis_test.go @@ -3,7 +3,7 @@ package chart import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestYAxisGetTicks(t *testing.T) { diff --git a/drawing/README.md b/pkg/drawing/README.md similarity index 100% rename from drawing/README.md rename to pkg/drawing/README.md diff --git a/drawing/color.go b/pkg/drawing/color.go similarity index 100% rename from drawing/color.go rename to pkg/drawing/color.go diff --git a/drawing/color_test.go b/pkg/drawing/color_test.go similarity index 96% rename from drawing/color_test.go rename to pkg/drawing/color_test.go index 15c3244..ad13f3e 100644 --- a/drawing/color_test.go +++ b/pkg/drawing/color_test.go @@ -5,7 +5,7 @@ import ( "image/color" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestColorFromHex(t *testing.T) { diff --git a/drawing/constants.go b/pkg/drawing/constants.go similarity index 100% rename from drawing/constants.go rename to pkg/drawing/constants.go diff --git a/drawing/curve.go b/pkg/drawing/curve.go similarity index 100% rename from drawing/curve.go rename to pkg/drawing/curve.go diff --git a/drawing/curve_test.go b/pkg/drawing/curve_test.go similarity index 91% rename from drawing/curve_test.go rename to pkg/drawing/curve_test.go index 31abe8e..c9bda15 100644 --- a/drawing/curve_test.go +++ b/pkg/drawing/curve_test.go @@ -3,7 +3,7 @@ package drawing import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) type point struct { diff --git a/drawing/dasher.go b/pkg/drawing/dasher.go similarity index 100% rename from drawing/dasher.go rename to pkg/drawing/dasher.go diff --git a/drawing/demux_flattener.go b/pkg/drawing/demux_flattener.go similarity index 100% rename from drawing/demux_flattener.go rename to pkg/drawing/demux_flattener.go diff --git a/drawing/drawing.go b/pkg/drawing/drawing.go similarity index 100% rename from drawing/drawing.go rename to pkg/drawing/drawing.go diff --git a/drawing/flattener.go b/pkg/drawing/flattener.go similarity index 100% rename from drawing/flattener.go rename to pkg/drawing/flattener.go diff --git a/drawing/free_type_path.go b/pkg/drawing/free_type_path.go similarity index 100% rename from drawing/free_type_path.go rename to pkg/drawing/free_type_path.go diff --git a/drawing/graphic_context.go b/pkg/drawing/graphic_context.go similarity index 100% rename from drawing/graphic_context.go rename to pkg/drawing/graphic_context.go diff --git a/drawing/image_filter.go b/pkg/drawing/image_filter.go similarity index 100% rename from drawing/image_filter.go rename to pkg/drawing/image_filter.go diff --git a/drawing/line.go b/pkg/drawing/line.go similarity index 100% rename from drawing/line.go rename to pkg/drawing/line.go diff --git a/drawing/matrix.go b/pkg/drawing/matrix.go similarity index 100% rename from drawing/matrix.go rename to pkg/drawing/matrix.go diff --git a/drawing/painter.go b/pkg/drawing/painter.go similarity index 100% rename from drawing/painter.go rename to pkg/drawing/painter.go diff --git a/drawing/path.go b/pkg/drawing/path.go similarity index 100% rename from drawing/path.go rename to pkg/drawing/path.go diff --git a/drawing/raster_graphic_context.go b/pkg/drawing/raster_graphic_context.go similarity index 100% rename from drawing/raster_graphic_context.go rename to pkg/drawing/raster_graphic_context.go diff --git a/drawing/stack_graphic_context.go b/pkg/drawing/stack_graphic_context.go similarity index 100% rename from drawing/stack_graphic_context.go rename to pkg/drawing/stack_graphic_context.go diff --git a/drawing/stroker.go b/pkg/drawing/stroker.go similarity index 100% rename from drawing/stroker.go rename to pkg/drawing/stroker.go diff --git a/drawing/text.go b/pkg/drawing/text.go similarity index 100% rename from drawing/text.go rename to pkg/drawing/text.go diff --git a/drawing/transformer.go b/pkg/drawing/transformer.go similarity index 100% rename from drawing/transformer.go rename to pkg/drawing/transformer.go diff --git a/drawing/util.go b/pkg/drawing/util.go similarity index 100% rename from drawing/util.go rename to pkg/drawing/util.go diff --git a/matrix/matrix.go b/pkg/matrix/matrix.go similarity index 100% rename from matrix/matrix.go rename to pkg/matrix/matrix.go diff --git a/matrix/matrix_test.go b/pkg/matrix/matrix_test.go similarity index 99% rename from matrix/matrix_test.go rename to pkg/matrix/matrix_test.go index 17b8be5..66d00cc 100644 --- a/matrix/matrix_test.go +++ b/pkg/matrix/matrix_test.go @@ -3,7 +3,7 @@ package matrix import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestNew(t *testing.T) { diff --git a/matrix/regression.go b/pkg/matrix/regression.go similarity index 100% rename from matrix/regression.go rename to pkg/matrix/regression.go diff --git a/matrix/regression_test.go b/pkg/matrix/regression_test.go similarity index 91% rename from matrix/regression_test.go rename to pkg/matrix/regression_test.go index d43c0f4..b5b481b 100644 --- a/matrix/regression_test.go +++ b/pkg/matrix/regression_test.go @@ -3,7 +3,7 @@ package matrix import ( "testing" - "github.com/wcharczuk/go-chart/v2/testutil" + "github.com/d-Rickyy-b/go-chart-x/v2/testutil" ) func TestPoly(t *testing.T) { diff --git a/matrix/util.go b/pkg/matrix/util.go similarity index 100% rename from matrix/util.go rename to pkg/matrix/util.go diff --git a/matrix/vector.go b/pkg/matrix/vector.go similarity index 100% rename from matrix/vector.go rename to pkg/matrix/vector.go diff --git a/roboto/roboto.go b/pkg/roboto/roboto.go similarity index 100% rename from roboto/roboto.go rename to pkg/roboto/roboto.go