2019-07-25 19:43:46 +03:00
|
|
|
// Copyright 2017 FoxyUtils ehf. All rights reserved.
|
2017-09-04 16:01:26 -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
|
Functions2 (#348)
* MATCH, IFS, MAXA, MINA
* OFFSET fixed
* ISBLANK, ISERR, ISERROR, ISEVEN ,ISFORMULA, ISNONTEXT, ISNUMBER, ISODD, ISTEXT
* ISLEAPYEAR, ISLOGICAL, ISNA, ISREF
* FIND, FINDB
* SEARCH, SEARCHB
* CONCAT, CONCATENATE
* YEAR, YEARFRAC
* CONCAT is fixed, now TRUE and FALSE are concatenated instead of 1 and 0 in case of boolean results
* NOW, TODAY, TIME, TIMEVALUE
* DATE
* DATEDIF
2019-11-21 02:21:00 +03:00
|
|
|
// commercial license can be purchased on https://unidoc.io.
|
2017-09-04 16:01:26 -05:00
|
|
|
|
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
2019-05-04 11:18:06 +03:00
|
|
|
"github.com/unidoc/unioffice/drawing"
|
|
|
|
"github.com/unidoc/unioffice/schema/soo/dml"
|
|
|
|
crt "github.com/unidoc/unioffice/schema/soo/dml/chart"
|
2017-09-04 16:01:26 -05:00
|
|
|
)
|
|
|
|
|
2017-09-05 20:53:11 -04:00
|
|
|
// BarChartSeries is a series to be used on a bar chart.
|
2017-09-04 16:01:26 -05:00
|
|
|
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() {
|
|
|
|
}
|
|
|
|
|
2017-09-05 20:53:11 -04:00
|
|
|
// SetText sets the series text.
|
2017-09-04 16:01:26 -05:00
|
|
|
func (c BarChartSeries) SetText(s string) {
|
|
|
|
c.x.Tx = crt.NewCT_SerTx()
|
|
|
|
c.x.Tx.Choice.V = &s
|
|
|
|
}
|
|
|
|
|
2017-09-05 20:55:25 -04:00
|
|
|
// CategoryAxis returns the category data source.
|
|
|
|
func (c BarChartSeries) CategoryAxis() CategoryAxisDataSource {
|
2017-09-04 16:01:26 -05:00
|
|
|
if c.x.Cat == nil {
|
|
|
|
c.x.Cat = crt.NewCT_AxDataSource()
|
|
|
|
}
|
|
|
|
return MakeAxisDataSource(c.x.Cat)
|
|
|
|
}
|
|
|
|
|
2017-09-05 20:55:25 -04:00
|
|
|
// Values returns the value data source.
|
2017-09-04 16:01:26 -05:00
|
|
|
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)
|
|
|
|
}
|