代码拉取完成,页面将自动刷新
// 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"
"baliance.com/gooxml/schema/soo/dml"
crt "baliance.com/gooxml/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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。