forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubblechartseries.go
66 lines (56 loc) · 1.87 KB
/
bubblechartseries.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// 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 [email protected].
package chart
import (
"github.com/unidoc/unioffice/drawing"
"github.com/unidoc/unioffice/schema/soo/dml"
crt "github.com/unidoc/unioffice/schema/soo/dml/chart"
)
// BubbleChartSeries is a series to be used on a Bubble chart.
type BubbleChartSeries struct {
x *crt.CT_BubbleSer
}
// X returns the inner wrapped XML type.
func (c BubbleChartSeries) X() *crt.CT_BubbleSer {
return c.x
}
// InitializeDefaults initializes a Bubble chart series to the default values.
func (c BubbleChartSeries) InitializeDefaults() {
}
// SetText sets the series text.
func (c BubbleChartSeries) SetText(s string) {
c.x.Tx = crt.NewCT_SerTx()
c.x.Tx.Choice.V = &s
}
// CategoryAxis returns the category data source.
func (c BubbleChartSeries) CategoryAxis() CategoryAxisDataSource {
if c.x.XVal == nil {
c.x.XVal = crt.NewCT_AxDataSource()
}
return MakeAxisDataSource(c.x.XVal)
}
// Values returns the value data source.
func (c BubbleChartSeries) Values() NumberDataSource {
if c.x.YVal == nil {
c.x.YVal = crt.NewCT_NumDataSource()
}
return MakeNumberDataSource(c.x.YVal)
}
// Values returns the bubble size data source.
func (c BubbleChartSeries) BubbleSizes() NumberDataSource {
if c.x.BubbleSize == nil {
c.x.BubbleSize = crt.NewCT_NumDataSource()
}
return MakeNumberDataSource(c.x.BubbleSize)
}
// Properties returns the Bubble chart series shape properties.
func (c BubbleChartSeries) Properties() drawing.ShapeProperties {
if c.x.SpPr == nil {
c.x.SpPr = dml.NewCT_ShapeProperties()
}
return drawing.MakeShapeProperties(c.x.SpPr)
}