unioffice/chart/barchartseries.go
2017-09-04 16:16:03 -05:00

56 lines
1.5 KiB
Go

// 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 (
"baliance.com/gooxml/drawing"
dml "baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
crt "baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml/2006/chart"
)
type BarChartSeries struct {
x *crt.CT_BarSer
}
// X returns the inner wrapped XML type.
func (c BarChartSeries) X() *crt.CT_BarSer {
return c.x
}
// InitializeDefaults initializes a bar chart series to the default values.
func (c BarChartSeries) InitializeDefaults() {
}
// SetText sets the series text
func (c BarChartSeries) SetText(s string) {
c.x.Tx = crt.NewCT_SerTx()
c.x.Tx.Choice.V = &s
}
func (c BarChartSeries) CategoryAxis() AxisDataSource {
if c.x.Cat == nil {
c.x.Cat = crt.NewCT_AxDataSource()
}
return MakeAxisDataSource(c.x.Cat)
}
func (c BarChartSeries) Values() NumberDataSource {
if c.x.Val == nil {
c.x.Val = crt.NewCT_NumDataSource()
}
return MakeNumberDataSource(c.x.Val)
}
// Properties returns the bar chart series shape properties.
func (c BarChartSeries) Properties() drawing.ShapeProperties {
if c.x.SpPr == nil {
c.x.SpPr = dml.NewCT_ShapeProperties()
}
return drawing.MakeShapeProperties(c.x.SpPr)
}