unioffice/chart/bubblechart.go
2017-09-23 10:01:17 -04:00

49 lines
1.3 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 (
crt "baliance.com/gooxml/schema/soo/dml/chart"
)
// BubbleChart is a 2D Bubble chart.
type BubbleChart struct {
chartBase
x *crt.CT_BubbleChart
}
// X returns the inner wrapped XML type.
func (c BubbleChart) X() *crt.CT_BubbleChart {
return c.x
}
// InitializeDefaults the Bubble chart to its defaults
func (c BubbleChart) InitializeDefaults() {
}
// AddSeries adds a default series to a Bubble chart.
func (c BubbleChart) AddSeries() BubbleChartSeries {
clr := c.nextColor(len(c.x.Ser))
ser := crt.NewCT_BubbleSer()
c.x.Ser = append(c.x.Ser, ser)
ser.Idx.ValAttr = uint32(len(c.x.Ser) - 1)
ser.Order.ValAttr = uint32(len(c.x.Ser) - 1)
bs := BubbleChartSeries{ser}
bs.InitializeDefaults()
bs.Properties().SetSolidFill(clr)
return bs
}
func (c BubbleChart) AddAxis(axis Axis) {
axisID := crt.NewCT_UnsignedInt()
axisID.ValAttr = axis.AxisID()
c.x.AxId = append(c.x.AxId, axisID)
}