diff options
author | xuri <xuri.me@gmail.com> | 2019-06-19 00:01:18 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-06-19 00:01:18 +0800 |
commit | e77c462d3f1c29b009186d42832e6d5f42ac069f (patch) | |
tree | e6dfcef70fe9af6e8ea28f6d70e626351444b989 /xmlChart.go | |
parent | a335be7e4e6824e65f3d8a34b7b45ffa8d78fe4b (diff) |
Support to create bubble and 3D bubble chart
Diffstat (limited to 'xmlChart.go')
-rw-r--r-- | xmlChart.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmlChart.go b/xmlChart.go index ff28bd3..8a3a680 100644 --- a/xmlChart.go +++ b/xmlChart.go @@ -306,6 +306,7 @@ type cPlotArea struct { Area3DChart *cCharts `xml:"area3DChart"` BarChart *cCharts `xml:"barChart"` Bar3DChart *cCharts `xml:"bar3DChart"` + BubbleChart *cCharts `xml:"bubbleChart"` DoughnutChart *cCharts `xml:"doughnutChart"` LineChart *cCharts `xml:"lineChart"` PieChart *cCharts `xml:"pieChart"` @@ -323,6 +324,7 @@ type cPlotArea struct { // cCharts specifies the common element of the chart. type cCharts struct { BarDir *attrValString `xml:"barDir"` + BubbleScale *attrValFloat `xml:"bubbleScale"` Grouping *attrValString `xml:"grouping"` RadarStyle *attrValString `xml:"radarStyle"` ScatterStyle *attrValString `xml:"scatterStyle"` @@ -395,6 +397,8 @@ type cSer struct { XVal *cCat `xml:"xVal"` YVal *cVal `xml:"yVal"` Smooth *attrValBool `xml:"smooth"` + BubbleSize *cVal `xml:"bubbleSize"` + Bubble3D *attrValBool `xml:"bubble3D"` } // cMarker (Marker) directly maps the marker element. This element specifies a |