feat: support radius for pie chart

This commit is contained in:
vicanso 2022-02-07 23:29:00 +08:00
parent e07cb90607
commit 524eb79a8e
12 changed files with 376 additions and 66 deletions

View file

@ -23,7 +23,6 @@
package charts
import (
"fmt"
"math"
"testing"
@ -253,7 +252,6 @@ func TestDraw(t *testing.T) {
tt.fn(d)
data, err := d.Bytes()
assert.Nil(err)
fmt.Println(string(data))
assert.Equal(tt.result, string(data))
}
}