summaryrefslogtreecommitdiffstats
path: root/cmd/jp/bar.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/jp/bar.go')
-rw-r--r--cmd/jp/bar.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/jp/bar.go b/cmd/jp/bar.go
index e1a622b..15dd196 100644
--- a/cmd/jp/bar.go
+++ b/cmd/jp/bar.go
@@ -4,8 +4,8 @@ import (
"fmt"
"reflect"
- "github.com/sgreben/jp/pkg/jp"
- "github.com/sgreben/jp/pkg/jp/primitives"
+ "github.com/sgreben/jp/pkg/draw"
+ "github.com/sgreben/jp/pkg/plot"
)
func barPlotData(xvv, yvv [][]reflect.Value) (x []string, y []float64) {
@@ -29,10 +29,10 @@ func barPlotData(xvv, yvv [][]reflect.Value) (x []string, y []float64) {
return
}
-func barPlot(xvv, yvv [][]reflect.Value, box primitives.Box) string {
+func barPlot(xvv, yvv [][]reflect.Value, c draw.Canvas) string {
groups, y := barPlotData(xvv, yvv)
- chart := jp.NewBarChart(box.Width, box.Height)
- data := new(jp.DataTable)
+ chart := plot.NewBarChart(c)
+ data := new(plot.DataTable)
if len(groups) != len(y) {
for i := range y {
data.AddColumn(fmt.Sprint(i))