forked from p30928647/excelize
fix unknown option in JSON struct tag
This commit is contained in:
parent
42c3541f68
commit
0ef2324f0b
|
@ -253,7 +253,7 @@ type aLn struct {
|
||||||
Algn string `xml:"algn,attr,omitempty"`
|
Algn string `xml:"algn,attr,omitempty"`
|
||||||
Cap string `xml:"cap,attr,omitempty"`
|
Cap string `xml:"cap,attr,omitempty"`
|
||||||
Cmpd string `xml:"cmpd,attr,omitempty"`
|
Cmpd string `xml:"cmpd,attr,omitempty"`
|
||||||
W int `xml:"w,attr,omitempty" `
|
W int `xml:"w,attr,omitempty"`
|
||||||
NoFill string `xml:"a:noFill,omitempty"`
|
NoFill string `xml:"a:noFill,omitempty"`
|
||||||
Round string `xml:"a:round,omitempty"`
|
Round string `xml:"a:round,omitempty"`
|
||||||
SolidFill *aSolidFill `xml:"a:solidFill"`
|
SolidFill *aSolidFill `xml:"a:solidFill"`
|
||||||
|
@ -591,7 +591,7 @@ type formatChartSeries struct {
|
||||||
} `json:"line"`
|
} `json:"line"`
|
||||||
Marker struct {
|
Marker struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Size int `json:"size,"`
|
Size int `json:"size"`
|
||||||
Width float64 `json:"width"`
|
Width float64 `json:"width"`
|
||||||
Border struct {
|
Border struct {
|
||||||
Color string `json:"color"`
|
Color string `json:"color"`
|
||||||
|
|
Loading…
Reference in New Issue