diff options
author | xuri <xuri.me@gmail.com> | 2018-12-23 00:07:47 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2018-12-23 00:07:47 +0800 |
commit | b04107c4a374dfc0a625d1513b0e5cb1d907260b (patch) | |
tree | 19aff4aa37576c1524d13f2cb1e4dd3429b56885 /xmlChart.go | |
parent | e7a96da2db1850d6cef5c2f9f199615edc752121 (diff) |
Resolve #311, create 2D/3D area, stacked area, 100% stacked area chart support
Diffstat (limited to 'xmlChart.go')
-rw-r--r-- | xmlChart.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmlChart.go b/xmlChart.go index 3271cbb..2f9b8d9 100644 --- a/xmlChart.go +++ b/xmlChart.go @@ -301,6 +301,8 @@ type cView3D struct { // plot area of the chart. type cPlotArea struct { Layout *string `xml:"c:layout"` + AreaChart *cCharts `xml:"c:areaChart"` + Area3DChart *cCharts `xml:"c:area3DChart"` BarChart *cCharts `xml:"c:barChart"` Bar3DChart *cCharts `xml:"c:bar3DChart"` DoughnutChart *cCharts `xml:"c:doughnutChart"` |