2019-07-25 19:43:46 +03:00
|
|
|
// Copyright 2017 FoxyUtils ehf. All rights reserved.
|
2017-09-07 09:03:05 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
2019-05-04 11:18:06 +03:00
|
|
|
"github.com/unidoc/unioffice/spreadsheet"
|
2017-09-07 09:03:05 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
ss := spreadsheet.New()
|
|
|
|
sheet := ss.AddSheet()
|
|
|
|
|
|
|
|
// Create all of our data
|
|
|
|
row := sheet.AddRow()
|
|
|
|
row.AddCell().SetString("Item")
|
|
|
|
row.AddCell().SetString("Price")
|
|
|
|
row.AddCell().SetString("# Sold")
|
|
|
|
row.AddCell().SetString("Total")
|
|
|
|
for r := 0; r < 5; r++ {
|
|
|
|
row := sheet.AddRow()
|
|
|
|
row.AddCell().SetString(fmt.Sprintf("Product %d", r+1))
|
|
|
|
row.AddCell().SetNumber(1.23 * float64(r+1))
|
|
|
|
row.AddCell().SetNumber(float64(r%3 + 1))
|
|
|
|
row.AddCell().SetFormulaRaw(fmt.Sprintf("C%d*B%d", r+2, r+2))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Charts need to reside in a drawing
|
|
|
|
dwng := ss.AddDrawing()
|
2017-09-11 20:10:06 -05:00
|
|
|
chart, anc := dwng.AddChart(spreadsheet.AnchorTypeTwoCell)
|
|
|
|
anc.SetWidthCells(10)
|
2017-09-07 09:03:05 -04:00
|
|
|
lc := chart.AddSurfaceChart()
|
|
|
|
priceSeries := lc.AddSeries()
|
|
|
|
priceSeries.SetText("Price")
|
|
|
|
// Set a category axis reference on the first series to pull the product names
|
2017-09-07 12:15:07 -04:00
|
|
|
priceSeries.CategoryAxis().SetLabelReference(`'Sheet 1'!A2:A6`)
|
2017-09-07 09:03:05 -04:00
|
|
|
priceSeries.Values().SetReference(`'Sheet 1'!B2:B6`)
|
|
|
|
|
|
|
|
soldSeries := lc.AddSeries()
|
|
|
|
soldSeries.SetText("Sold")
|
2017-09-07 12:15:07 -04:00
|
|
|
soldSeries.CategoryAxis().SetLabelReference(`'Sheet 1'!A2:A6`)
|
2017-09-07 09:03:05 -04:00
|
|
|
soldSeries.Values().SetReference(`'Sheet 1'!C2:C6`)
|
|
|
|
|
|
|
|
totalSeries := lc.AddSeries()
|
|
|
|
totalSeries.SetText("Total")
|
2017-09-07 12:15:07 -04:00
|
|
|
totalSeries.CategoryAxis().SetLabelReference(`'Sheet 1'!A2:A6`)
|
2017-09-07 09:03:05 -04:00
|
|
|
totalSeries.Values().SetReference(`'Sheet 1'!D2:D6`)
|
|
|
|
|
|
|
|
ca := chart.AddCategoryAxis()
|
|
|
|
va := chart.AddValueAxis()
|
|
|
|
sa := chart.AddSeriesAxis()
|
|
|
|
lc.AddAxis(ca)
|
|
|
|
lc.AddAxis(va)
|
|
|
|
lc.AddAxis(sa)
|
|
|
|
|
|
|
|
ca.SetCrosses(va)
|
|
|
|
va.SetCrosses(ca)
|
|
|
|
sa.SetCrosses(va)
|
|
|
|
|
|
|
|
// add a title and legend
|
|
|
|
title := chart.AddTitle()
|
|
|
|
title.SetText("Items Sold")
|
|
|
|
chart.AddLegend()
|
|
|
|
|
|
|
|
// and finally add the chart to the sheet
|
|
|
|
sheet.SetDrawing(dwng)
|
|
|
|
|
|
|
|
if err := ss.Validate(); err != nil {
|
|
|
|
log.Fatalf("error validating sheet: %s", err)
|
|
|
|
}
|
|
|
|
ss.SaveToFile("surface-chart.xlsx")
|
|
|
|
}
|