2017-08-28 20:56:18 -05:00
|
|
|
// Copyright 2017 Baliance. All rights reserved.
|
|
|
|
//
|
2017-09-09 10:21:47 -05:00
|
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
|
|
//
|
2017-08-28 20:56:18 -05:00
|
|
|
// Use of this source code is governed by the terms of the Affero GNU General
|
|
|
|
// Public License version 3.0 as published by the Free Software Foundation and
|
|
|
|
// appearing in the file LICENSE included in the packaging of this file. A
|
|
|
|
// commercial license can be purchased by contacting sales@baliance.com.
|
|
|
|
|
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2017-09-03 21:00:35 -05:00
|
|
|
"fmt"
|
2017-09-29 20:52:19 -05:00
|
|
|
|
|
|
|
"baliance.com/gooxml"
|
2017-08-28 20:56:18 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type CT_PlotAreaChoice1 struct {
|
2017-09-03 21:00:35 -05:00
|
|
|
ValAx []*CT_ValAx
|
|
|
|
CatAx []*CT_CatAx
|
|
|
|
DateAx []*CT_DateAx
|
|
|
|
SerAx []*CT_SerAx
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCT_PlotAreaChoice1() *CT_PlotAreaChoice1 {
|
|
|
|
ret := &CT_PlotAreaChoice1{}
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotAreaChoice1) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
|
|
if m.ValAx != nil {
|
2017-09-03 09:29:13 -05:00
|
|
|
sevalAx := xml.StartElement{Name: xml.Name{Local: "c:valAx"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.ValAx {
|
|
|
|
e.EncodeElement(c, sevalAx)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.CatAx != nil {
|
2017-09-03 09:29:13 -05:00
|
|
|
secatAx := xml.StartElement{Name: xml.Name{Local: "c:catAx"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.CatAx {
|
|
|
|
e.EncodeElement(c, secatAx)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.DateAx != nil {
|
2017-09-03 09:29:13 -05:00
|
|
|
sedateAx := xml.StartElement{Name: xml.Name{Local: "c:dateAx"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.DateAx {
|
|
|
|
e.EncodeElement(c, sedateAx)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.SerAx != nil {
|
2017-09-03 09:29:13 -05:00
|
|
|
seserAx := xml.StartElement{Name: xml.Name{Local: "c:serAx"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.SerAx {
|
|
|
|
e.EncodeElement(c, seserAx)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotAreaChoice1) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
// initialize to default
|
|
|
|
lCT_PlotAreaChoice1:
|
|
|
|
for {
|
|
|
|
tok, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch el := tok.(type) {
|
|
|
|
case xml.StartElement:
|
2017-09-10 10:02:39 -05:00
|
|
|
switch el.Name {
|
2019-04-29 18:32:26 +03:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "valAx"},
|
|
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "valAx"}:
|
2017-09-03 21:00:35 -05:00
|
|
|
tmp := NewCT_ValAx()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
m.ValAx = append(m.ValAx, tmp)
|
2019-04-29 18:32:26 +03:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "catAx"},
|
|
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "catAx"}:
|
2017-09-03 21:00:35 -05:00
|
|
|
tmp := NewCT_CatAx()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
m.CatAx = append(m.CatAx, tmp)
|
2019-04-29 18:32:26 +03:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "dateAx"},
|
|
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "dateAx"}:
|
2017-09-03 21:00:35 -05:00
|
|
|
tmp := NewCT_DateAx()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
m.DateAx = append(m.DateAx, tmp)
|
2019-04-29 18:32:26 +03:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "serAx"},
|
|
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "serAx"}:
|
2017-09-03 21:00:35 -05:00
|
|
|
tmp := NewCT_SerAx()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
m.SerAx = append(m.SerAx, tmp)
|
2017-08-28 20:56:18 -05:00
|
|
|
default:
|
2017-09-29 20:52:19 -05:00
|
|
|
gooxml.Log("skipping unsupported element on CT_PlotAreaChoice1 %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
|
|
|
break lCT_PlotAreaChoice1
|
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// Validate validates the CT_PlotAreaChoice1 and its children
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotAreaChoice1) Validate() error {
|
|
|
|
return m.ValidateWithPath("CT_PlotAreaChoice1")
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// ValidateWithPath validates the CT_PlotAreaChoice1 and its children, prefixing error messages with path
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotAreaChoice1) ValidateWithPath(path string) error {
|
2017-09-03 21:00:35 -05:00
|
|
|
for i, v := range m.ValAx {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/ValAx[%d]", path, i)); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
for i, v := range m.CatAx {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/CatAx[%d]", path, i)); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
for i, v := range m.DateAx {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/DateAx[%d]", path, i)); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 21:00:35 -05:00
|
|
|
for i, v := range m.SerAx {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/SerAx[%d]", path, i)); err != nil {
|
2017-08-28 20:56:18 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|