2017-08-28 20:56:18 -05:00
|
|
|
// Copyright 2017 Baliance. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CT_PlotArea struct {
|
|
|
|
Layout *CT_Layout
|
|
|
|
Choice []*CT_PlotAreaChoice
|
|
|
|
CChoice []*CT_PlotAreaChoice1
|
|
|
|
DTable *CT_DTable
|
|
|
|
SpPr *drawingml.CT_ShapeProperties
|
|
|
|
ExtLst *CT_ExtensionList
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCT_PlotArea() *CT_PlotArea {
|
|
|
|
ret := &CT_PlotArea{}
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotArea) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
e.EncodeToken(start)
|
|
|
|
if m.Layout != nil {
|
|
|
|
selayout := xml.StartElement{Name: xml.Name{Local: "layout"}}
|
|
|
|
e.EncodeElement(m.Layout, selayout)
|
|
|
|
}
|
|
|
|
for _, c := range m.Choice {
|
|
|
|
c.MarshalXML(e, start)
|
|
|
|
}
|
|
|
|
if m.CChoice != nil {
|
|
|
|
for _, c := range m.CChoice {
|
|
|
|
c.MarshalXML(e, start)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.DTable != nil {
|
|
|
|
sedTable := xml.StartElement{Name: xml.Name{Local: "dTable"}}
|
|
|
|
e.EncodeElement(m.DTable, sedTable)
|
|
|
|
}
|
|
|
|
if m.SpPr != nil {
|
|
|
|
sespPr := xml.StartElement{Name: xml.Name{Local: "spPr"}}
|
|
|
|
e.EncodeElement(m.SpPr, sespPr)
|
|
|
|
}
|
|
|
|
if m.ExtLst != nil {
|
|
|
|
seextLst := xml.StartElement{Name: xml.Name{Local: "extLst"}}
|
|
|
|
e.EncodeElement(m.ExtLst, seextLst)
|
|
|
|
}
|
|
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotArea) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
// initialize to default
|
|
|
|
lCT_PlotArea:
|
|
|
|
for {
|
|
|
|
tok, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch el := tok.(type) {
|
|
|
|
case xml.StartElement:
|
|
|
|
switch el.Name.Local {
|
|
|
|
case "layout":
|
|
|
|
m.Layout = NewCT_Layout()
|
|
|
|
if err := d.DecodeElement(m.Layout, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case "areaChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.AreaChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "area3DChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.Area3DChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "lineChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.LineChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "line3DChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.Line3DChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "stockChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.StockChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "radarChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.RadarChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "scatterChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.ScatterChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "pieChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.PieChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "pie3DChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.Pie3DChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "doughnutChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.DoughnutChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "barChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.BarChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "bar3DChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.Bar3DChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "ofPieChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.OfPieChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "surfaceChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.SurfaceChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "surface3DChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.Surface3DChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "bubbleChart":
|
|
|
|
tmp := NewCT_PlotAreaChoice()
|
|
|
|
if err := d.DecodeElement(&tmp.BubbleChart, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Choice = append(m.Choice, tmp)
|
|
|
|
case "valAx":
|
|
|
|
tmp := NewCT_PlotAreaChoice1()
|
|
|
|
if err := d.DecodeElement(&tmp.ValAx, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.CChoice = append(m.CChoice, tmp)
|
|
|
|
case "catAx":
|
|
|
|
tmp := NewCT_PlotAreaChoice1()
|
|
|
|
if err := d.DecodeElement(&tmp.CatAx, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.CChoice = append(m.CChoice, tmp)
|
|
|
|
case "dateAx":
|
|
|
|
tmp := NewCT_PlotAreaChoice1()
|
|
|
|
if err := d.DecodeElement(&tmp.DateAx, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.CChoice = append(m.CChoice, tmp)
|
|
|
|
case "serAx":
|
|
|
|
tmp := NewCT_PlotAreaChoice1()
|
|
|
|
if err := d.DecodeElement(&tmp.SerAx, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.CChoice = append(m.CChoice, tmp)
|
|
|
|
case "dTable":
|
|
|
|
m.DTable = NewCT_DTable()
|
|
|
|
if err := d.DecodeElement(m.DTable, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case "spPr":
|
|
|
|
m.SpPr = drawingml.NewCT_ShapeProperties()
|
|
|
|
if err := d.DecodeElement(m.SpPr, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case "extLst":
|
|
|
|
m.ExtLst = NewCT_ExtensionList()
|
|
|
|
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
2017-09-01 16:52:12 -05:00
|
|
|
log.Printf("skipping unsupported element on CT_PlotArea %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
|
|
|
break lCT_PlotArea
|
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// Validate validates the CT_PlotArea and its children
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotArea) Validate() error {
|
|
|
|
return m.ValidateWithPath("CT_PlotArea")
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// ValidateWithPath validates the CT_PlotArea and its children, prefixing error messages with path
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PlotArea) ValidateWithPath(path string) error {
|
|
|
|
if m.Layout != nil {
|
|
|
|
if err := m.Layout.ValidateWithPath(path + "/Layout"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.Choice {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/Choice[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.CChoice {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/CChoice[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.DTable != nil {
|
|
|
|
if err := m.DTable.ValidateWithPath(path + "/DTable"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.SpPr != nil {
|
|
|
|
if err := m.SpPr.ValidateWithPath(path + "/SpPr"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.ExtLst != nil {
|
|
|
|
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|