File tree 3 files changed +8
-9
lines changed
3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
- patreon : xuri
1
+ github : xuri
2
2
open_collective : excelize
3
+ patreon : xuri
3
4
ko_fi : xurime
4
5
liberapay : xuri
5
6
issuehunt : xuri
Original file line number Diff line number Diff line change @@ -846,17 +846,17 @@ func parseChartOptions(opts *Chart) (*Chart, error) {
846
846
// Color
847
847
// VertAlign
848
848
//
849
- // LogBase: Specifies logarithmic scale for the YAxis .
849
+ // LogBase: Specifies logarithmic scale base number of the vertical axis .
850
850
//
851
851
// NumFmt: Specifies that if linked to source and set custom number format code
852
852
// for axis. The 'NumFmt' property is optional. The default format code is
853
853
// 'General'.
854
854
//
855
- // Title: Specifies that the primary horizontal or vertical axis title. The
856
- // 'Title' property is optional.
855
+ // Title: Specifies that the primary horizontal or vertical axis title and
856
+ // resize chart. The 'Title' property is optional.
857
857
//
858
858
// Set chart size by 'Dimension' property. The 'Dimension' property is optional.
859
- // The default width is 480, and height is 290 .
859
+ // The default width is 480, and height is 260 .
860
860
//
861
861
// combo: Specifies the create a chart that combines two or more chart types in
862
862
// a single chart. For example, create a clustered column - line chart with
Original file line number Diff line number Diff line change @@ -342,10 +342,8 @@ func TestReadBytes(t *testing.T) {
342
342
}
343
343
344
344
func TestUnzipToTemp (t * testing.T ) {
345
- for _ , v := range []string {"go1.19" , "go1.20" } {
346
- if strings .HasPrefix (runtime .Version (), v ) {
347
- t .Skip ()
348
- }
345
+ if ver := runtime .Version (); strings .HasPrefix (ver , "go1.19" ) || strings .HasPrefix (ver , "go1.2" ) {
346
+ t .Skip ()
349
347
}
350
348
os .Setenv ("TMPDIR" , "test" )
351
349
defer os .Unsetenv ("TMPDIR" )
You can’t perform that action at this time.
0 commit comments