unioffice/chart/categoryaxisdatasource.go
Vyacheslav Zgordan dd7713e1e3 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-20 23:21:00 +00:00

56 lines
1.8 KiB
Go

// Copyright 2017 FoxyUtils ehf. 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 on https://unidoc.io.
package chart
import (
crt "github.com/unidoc/unioffice/schema/soo/dml/chart"
)
// CategoryAxisDataSource specifies the data for an axis. It's commonly used with
// SetReference to set the axis data to a range of cells.
type CategoryAxisDataSource struct {
x *crt.CT_AxDataSource
}
// MakeAxisDataSource constructs an AxisDataSource wrapper.
func MakeAxisDataSource(x *crt.CT_AxDataSource) CategoryAxisDataSource {
return CategoryAxisDataSource{x}
}
// SetLabelReference is used to set the source data to a range of cells
// containing strings.
func (a CategoryAxisDataSource) SetLabelReference(s string) {
a.x.Choice = crt.NewCT_AxDataSourceChoice()
a.x.Choice.StrRef = crt.NewCT_StrRef()
a.x.Choice.StrRef.F = s
}
// SetNumberReference is used to set the source data to a range of cells containing
// numbers.
func (a CategoryAxisDataSource) SetNumberReference(s string) {
a.x.Choice = crt.NewCT_AxDataSourceChoice()
a.x.Choice.NumRef = crt.NewCT_NumRef()
a.x.Choice.NumRef.F = s
}
// SetValues is used to set the source data to a set of values.
func (a CategoryAxisDataSource) SetValues(v []string) {
a.x.Choice = crt.NewCT_AxDataSourceChoice()
a.x.Choice.StrLit = crt.NewCT_StrData()
a.x.Choice.StrLit.PtCount = crt.NewCT_UnsignedInt()
a.x.Choice.StrLit.PtCount.ValAttr = uint32(len(v))
for i, x := range v {
a.x.Choice.StrLit.Pt = append(a.x.Choice.StrLit.Pt,
&crt.CT_StrVal{
IdxAttr: uint32(i),
V: x})
}
}