Compare commits
2 Commits
add-chart-
...
simplified
| Author | SHA1 | Date | |
|---|---|---|---|
| 803fa1f7ba | |||
| e0a74bd9af |
@@ -1,332 +1,268 @@
|
|||||||
REM ***** BASIC *****
|
REM ***** BASIC *****
|
||||||
|
|
||||||
Option Explicit
|
Option Explicit
|
||||||
|
|
||||||
' ==== BuildWeatherSummaries ====
|
|
||||||
Sub BuildWeatherSummaries()
|
Sub BuildWeatherSummaries()
|
||||||
Dim oDoc As Object, oSheets As Object, oSheet As Object, oSummary As Object, oRefSheet As Object
|
Dim oDoc As Object, oSummary As Object
|
||||||
Dim sheetIndex As Long, col As Long, outCol As Long, row As Long
|
Dim categories(), srcSheets(), headerMap As Object
|
||||||
Dim category As String, header As String, headerLow As String
|
Dim iCat As Long, oSrc As Object
|
||||||
Dim categories() As String
|
Dim outRow As Long, lastCol As Long
|
||||||
Dim startRow As Long, endRow As Long, headerRow As Long
|
Dim headers() As String, cleanedHeaders() As String
|
||||||
Dim headerCell As Object
|
Dim i As Long, r As Long
|
||||||
Dim outRow As Long
|
|
||||||
|
|
||||||
categories = Array("Temp", "Wind", "Rel Humidity", "Avg Total Liquid Precipitation", "Rainy Days")
|
oDoc = ThisComponent
|
||||||
|
On Error Resume Next
|
||||||
|
oDoc.Sheets.getByName("Summary").dispose()
|
||||||
|
On Error GoTo 0
|
||||||
|
oDoc.Sheets.insertNewByName("Summary", 0)
|
||||||
|
oSummary = oDoc.Sheets.getByName("Summary")
|
||||||
|
|
||||||
' UI rows: headers on row 23, data on rows 26–37
|
' Define category mapping
|
||||||
headerRow = 23
|
categories = Array( _
|
||||||
startRow = 26
|
"Monthly Avg Temp (degF)", _
|
||||||
endRow = 37
|
"Monthly Avg Wind Speed (mph)", _
|
||||||
|
"Monthly Avg Rel Humidity (%)", _
|
||||||
|
"Monthly Avg Total Liquid Precipitation (in)", _
|
||||||
|
"Monthly Rainy Days (>0.1"" Liquid Precipitation)", _
|
||||||
|
"Monthly Solar Radiation (kWh/m2/day)" _
|
||||||
|
)
|
||||||
|
|
||||||
oDoc = ThisComponent
|
srcSheets = Array( _
|
||||||
oSheets = oDoc.Sheets
|
"PWS-WU Monthly", _
|
||||||
|
"PWS-WU Monthly", _
|
||||||
' Get REF sheet (for month abbreviations)
|
"PWS-WU Monthly", _
|
||||||
If Not SheetExists("REF") Then
|
"PWS-WU Monthly", _
|
||||||
MsgBox "Reference sheet 'REF' not found! Cannot pull month abbreviations."
|
"PWS-WU Monthly", _
|
||||||
Exit Sub
|
"PWS-WU Monthly" _
|
||||||
End If
|
)
|
||||||
oRefSheet = oSheets.getByName("REF")
|
|
||||||
|
|
||||||
' Create or clear the Summary sheet
|
|
||||||
If Not SheetExists("Summary") Then
|
|
||||||
oSummary = oSheets.createByName("Summary", oSheets.Count)
|
|
||||||
oSheets.insertByName("Summary", oSummary)
|
|
||||||
End If
|
|
||||||
oSummary = oSheets.getByName("Summary")
|
|
||||||
oSummary.clearContents(1023) ' clear all
|
|
||||||
|
|
||||||
|
' Output row tracker
|
||||||
outRow = 0
|
outRow = 0
|
||||||
|
|
||||||
Dim catIndex As Long
|
For iCat = LBound(categories) To UBound(categories)
|
||||||
For catIndex = LBound(categories) To UBound(categories)
|
' Title row
|
||||||
category = categories(catIndex)
|
oSummary.getCellByPosition(0, outRow).String = categories(iCat) & " Data Summary"
|
||||||
|
oSummary.getCellByPosition(0, outRow).CharWeight = com.sun.star.awt.FontWeight.BOLD
|
||||||
' Title
|
|
||||||
oSummary.getCellByPosition(0, outRow).String = category & " Data Summary"
|
|
||||||
outRow = outRow + 1
|
outRow = outRow + 1
|
||||||
|
|
||||||
' Month header
|
' Source sheet
|
||||||
oSummary.getCellByPosition(0, outRow).String = "Month"
|
oSrc = oDoc.Sheets.getByName(srcSheets(iCat))
|
||||||
|
|
||||||
' Fill months (Jan–Dec) from REF sheet, column A, rows 0..11 (zero-based)
|
' Determine last column from source
|
||||||
For row = 0 To 11
|
lastCol = 0
|
||||||
On Error Resume Next
|
Do While Trim(oSrc.getCellByPosition(lastCol, 0).String) <> ""
|
||||||
oSummary.getCellByPosition(0, outRow + row + 1).String = oRefSheet.getCellByPosition(0, row).String
|
lastCol = lastCol + 1
|
||||||
On Error GoTo 0
|
Loop
|
||||||
Next row
|
lastCol = lastCol - 1
|
||||||
|
|
||||||
outCol = 1
|
' Read headers from source
|
||||||
|
ReDim headers(lastCol)
|
||||||
|
For i = 0 To lastCol
|
||||||
|
headers(i) = oSrc.getCellByPosition(i, 0).String
|
||||||
|
Next i
|
||||||
|
|
||||||
' Scan all sheets whose name contains "monthly"
|
' Clean headers
|
||||||
For sheetIndex = 0 To oSheets.Count - 1
|
cleanedHeaders = CleanHeaders(headers, srcSheets(iCat))
|
||||||
oSheet = oSheets.getByIndex(sheetIndex)
|
|
||||||
If InStr(LCase(oSheet.Name), "monthly") > 0 Then
|
|
||||||
col = 0
|
|
||||||
Do While col < 100 ' safety limit
|
|
||||||
' Read header text from the real header row (UI row 23 -> zero-based 22)
|
|
||||||
headerCell = oSheet.getCellByPosition(col, headerRow - 1)
|
|
||||||
header = Trim(headerCell.String)
|
|
||||||
If header = "" Then Exit Do
|
|
||||||
|
|
||||||
headerLow = LCase(header)
|
' Write headers
|
||||||
|
For i = 0 To lastCol
|
||||||
|
oSummary.getCellByPosition(i, outRow).String = cleanedHeaders(i)
|
||||||
|
Next i
|
||||||
|
|
||||||
If category = "Temp" Then
|
' Copy data (assumes 12 months starting at row 1 in source)
|
||||||
If InStr(headerLow, "avg") > 0 And InStr(headerLow, "temp") > 0 Then
|
For r = 1 To 12
|
||||||
' copy using the TRUE header row, and data rows 26..37
|
For i = 0 To lastCol
|
||||||
CopyColumnData oSheet, col, headerRow, oSummary, outCol, outRow, startRow, endRow
|
oSummary.getCellByPosition(i, outRow + r).Value = oSrc.getCellByPosition(i, r).Value
|
||||||
outCol = outCol + 1
|
Next i
|
||||||
End If
|
Next r
|
||||||
Else
|
|
||||||
If InStr(headerLow, LCase(category)) > 0 Then
|
|
||||||
CopyColumnData oSheet, col, headerRow, oSummary, outCol, outRow, startRow, endRow
|
|
||||||
outCol = outCol + 1
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
col = col + 1
|
' Next table
|
||||||
Loop
|
outRow = outRow + 12 + 2
|
||||||
End If
|
Next iCat
|
||||||
Next sheetIndex
|
|
||||||
|
|
||||||
' Move output pointer below this table (+1 for header row +12 months)
|
|
||||||
outRow = outRow + (endRow - startRow + 2) + 1
|
|
||||||
Next catIndex
|
|
||||||
|
|
||||||
MsgBox "Weather summaries built successfully."
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
' ==== Helpers ====
|
Function CleanHeaders(origHeaders() As String, srcName As String) As Variant
|
||||||
|
Dim cleaned() As String, i As Long, h As String
|
||||||
|
ReDim cleaned(UBound(origHeaders))
|
||||||
|
|
||||||
' Check if a sheet exists
|
For i = LBound(origHeaders) To UBound(origHeaders)
|
||||||
Function SheetExists(sheetName As String) As Boolean
|
h = Trim(origHeaders(i))
|
||||||
Dim oSheets As Object, oSheet As Object
|
|
||||||
oSheets = ThisComponent.Sheets
|
' Simple pattern-based cleanup
|
||||||
On Error Resume Next
|
h = Replace(h, "PWS-WU Avg Max Temp (degF)", "PWS-WU Max")
|
||||||
oSheet = oSheets.getByName(sheetName)
|
h = Replace(h, "PWS-WU Avg Temp (degF)", "PWS-WU Avg")
|
||||||
SheetExists = (Err = 0)
|
h = Replace(h, "PWS-WU Avg Min Temp", "PWS-WU Min")
|
||||||
On Error GoTo 0
|
h = Replace(h, "RAWS Avg Max Temp (degF)", "RAWS Max")
|
||||||
|
h = Replace(h, "RAWS Avg Temp (degF)", "RAWS Avg")
|
||||||
|
h = Replace(h, "RAWS Avg Min Temp", "RAWS Min")
|
||||||
|
|
||||||
|
' Generic cleanups
|
||||||
|
h = Replace(h, " (degF)", "")
|
||||||
|
h = Replace(h, " (%)", "")
|
||||||
|
h = Replace(h, " (in)", "")
|
||||||
|
h = Replace(h, " (ly)", "")
|
||||||
|
h = Replace(h, " (kWh/m2/day)", "")
|
||||||
|
|
||||||
|
cleaned(i) = h
|
||||||
|
Next i
|
||||||
|
|
||||||
|
CleanHeaders = cleaned
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
' Copy one source column (using the TRUE header row) into the summary table,
|
'========================
|
||||||
' preserving number formats for data cells.
|
' FormatSummaryTables
|
||||||
' Now prefixes header with the source sheet name.
|
'========================
|
||||||
Sub CopyColumnData(srcSheet As Object, srcCol As Long, srcHeaderRow As Long, _
|
' Formats each summary table in order from the top of the Summary sheet,
|
||||||
destSheet As Object, destCol As Long, destHeaderRow As Long, _
|
' without hardcoding category names. Assumes each table is:
|
||||||
srcStartRow As Long, srcEndRow As Long)
|
' Title row (R)
|
||||||
|
' Header row (R+1)
|
||||||
Dim r As Long
|
' Data rows (12) (R+2 .. R+13)
|
||||||
Dim srcCell As Object, destCell As Object
|
' Blank spacer (R+14)
|
||||||
Dim headerText As String
|
|
||||||
|
|
||||||
' Copy header from the real header row and prefix with sheet name
|
|
||||||
srcCell = srcSheet.getCellByPosition(srcCol, srcHeaderRow - 1)
|
|
||||||
headerText = srcSheet.Name & " " & srcCell.String
|
|
||||||
destSheet.getCellByPosition(destCol, destHeaderRow).String = headerText
|
|
||||||
|
|
||||||
' Copy data rows (26..37) and preserve number format
|
|
||||||
For r = 0 To (srcEndRow - srcStartRow)
|
|
||||||
srcCell = srcSheet.getCellByPosition(srcCol, srcStartRow - 1 + r) ' zero-based conversion
|
|
||||||
destCell = destSheet.getCellByPosition(destCol, destHeaderRow + 1 + r)
|
|
||||||
|
|
||||||
' Preserve empties and text; copy numbers with format
|
|
||||||
If srcCell.Type = com.sun.star.table.CellContentType.EMPTY Then
|
|
||||||
destCell.String = ""
|
|
||||||
ElseIf srcCell.Type = com.sun.star.table.CellContentType.VALUE Then
|
|
||||||
destCell.Value = srcCell.Value
|
|
||||||
destCell.NumberFormat = srcCell.NumberFormat
|
|
||||||
Else
|
|
||||||
' text/formula-as-text
|
|
||||||
destCell.String = srcCell.String
|
|
||||||
destCell.NumberFormat = srcCell.NumberFormat
|
|
||||||
End If
|
|
||||||
Next r
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
' ==== FormatSummaryTables ====
|
|
||||||
Sub FormatSummaryTables()
|
Sub FormatSummaryTables()
|
||||||
Dim oDoc As Object, oSheet As Object
|
Dim oDoc As Object, oSheet As Object
|
||||||
Dim outRow As Long
|
Dim rowPtr As Long, lastCol As Long
|
||||||
Dim i As Long, j As Long
|
Dim j As Long, iRow As Long
|
||||||
Dim iRow As Long
|
|
||||||
Dim cell As Object
|
Dim cell As Object
|
||||||
Dim rangeStart As Long, rangeEnd As Long
|
Dim headerRow As Long, dataStart As Long, dataEnd As Long
|
||||||
Dim categories() As String
|
|
||||||
Dim lastCol As Long
|
|
||||||
|
|
||||||
oDoc = ThisComponent
|
oDoc = ThisComponent
|
||||||
oSheet = oDoc.Sheets.getByName("Summary")
|
oSheet = oDoc.Sheets.getByName("Summary")
|
||||||
|
|
||||||
categories = Array("Temp", "Wind", "Rel Humidity", "Avg Total Liquid Precipitation", "Rainy Days")
|
rowPtr = 0
|
||||||
outRow = 0
|
Do While Trim(oSheet.getCellByPosition(0, rowPtr).String) <> ""
|
||||||
|
|
||||||
For i = LBound(categories) To UBound(categories)
|
|
||||||
' Title row
|
' Title row
|
||||||
cell = oSheet.getCellByPosition(0, outRow)
|
cell = oSheet.getCellByPosition(0, rowPtr)
|
||||||
cell.CharWeight = com.sun.star.awt.FontWeight.BOLD
|
cell.CharWeight = com.sun.star.awt.FontWeight.BOLD
|
||||||
cell.CharHeight = 12
|
cell.CharHeight = 12
|
||||||
cell.CellBackColor = RGB(255, 255, 255)
|
cell.CellBackColor = RGB(255, 255, 255)
|
||||||
outRow = outRow + 1
|
|
||||||
|
|
||||||
' Find last used column in header row
|
' Header row
|
||||||
|
headerRow = rowPtr + 1
|
||||||
lastCol = 0
|
lastCol = 0
|
||||||
For j = 0 To oSheet.Columns.Count - 1
|
Do While Trim(oSheet.getCellByPosition(lastCol, headerRow).String) <> ""
|
||||||
cell = oSheet.getCellByPosition(j, outRow)
|
lastCol = lastCol + 1
|
||||||
If Trim(cell.String) = "" Then Exit For
|
Loop
|
||||||
lastCol = j
|
lastCol = lastCol - 1
|
||||||
Next j
|
If lastCol < 0 Then Exit Do
|
||||||
|
|
||||||
' Header row formatting
|
|
||||||
For j = 0 To lastCol
|
For j = 0 To lastCol
|
||||||
cell = oSheet.getCellByPosition(j, outRow)
|
cell = oSheet.getCellByPosition(j, headerRow)
|
||||||
cell.CharWeight = com.sun.star.awt.FontWeight.BOLD
|
cell.CharWeight = com.sun.star.awt.FontWeight.BOLD
|
||||||
cell.IsTextWrapped = True
|
cell.IsTextWrapped = True
|
||||||
cell.CellBackColor = RGB(255, 173, 0) ' #FFAD00 orange
|
cell.CellBackColor = RGB(255, 173, 0) ' #FFAD00
|
||||||
cell.HoriJustify = com.sun.star.table.CellHoriJustify.CENTER
|
cell.HoriJustify = com.sun.star.table.CellHoriJustify.CENTER
|
||||||
cell.VertJustify = com.sun.star.table.CellVertJustify.BOTTOM ' <-- changed
|
cell.VertJustify = com.sun.star.table.CellVertJustify.BOTTOM
|
||||||
Next j
|
Next j
|
||||||
|
|
||||||
' Data rows formatting
|
' Data rows (next 12)
|
||||||
rangeStart = outRow + 1
|
dataStart = headerRow + 1
|
||||||
rangeEnd = outRow + 12 ' assuming 12 months data rows
|
dataEnd = dataStart + 11
|
||||||
|
For iRow = dataStart To dataEnd
|
||||||
For iRow = rangeStart To rangeEnd
|
|
||||||
For j = 0 To lastCol
|
For j = 0 To lastCol
|
||||||
cell = oSheet.getCellByPosition(j, iRow)
|
cell = oSheet.getCellByPosition(j, iRow)
|
||||||
cell.HoriJustify = com.sun.star.table.CellHoriJustify.CENTER
|
cell.HoriJustify = com.sun.star.table.CellHoriJustify.CENTER
|
||||||
' No rounding here — NumberFormat is inherited from source
|
|
||||||
Next j
|
Next j
|
||||||
Next iRow
|
Next iRow
|
||||||
|
|
||||||
outRow = rangeEnd + 2
|
' Advance to next table (skip 12 data rows + header + blank spacer)
|
||||||
Next i
|
rowPtr = dataEnd + 2
|
||||||
|
Loop
|
||||||
|
|
||||||
MsgBox "Summary tables formatted."
|
MsgBox "Summary tables formatted."
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Sub CreateChartsFromSummary()
|
Sub CreateChartsFromSummary()
|
||||||
Dim oDoc As Object, oSheet As Object, oCharts As Object
|
Dim oDoc As Object, oSheet As Object, oCharts As Object
|
||||||
Dim categories() As String, chartNames() As String
|
Dim categories(), chartNames()
|
||||||
Dim iCat As Integer, iRow As Long, foundRow As Long
|
Dim iCat As Long, foundRow As Long, iRow As Long
|
||||||
Dim titleRow As Long, headerRow As Long
|
Dim titleRow As Long, headerRow As Long, dataStartRow As Long, dataEndRow As Long
|
||||||
Dim dataStartRow As Long, dataEndRow As Long
|
|
||||||
Dim lastCol As Long
|
Dim lastCol As Long
|
||||||
Dim chartRangeAddress As Object
|
Dim chartRangeAddress As Object
|
||||||
Dim chartObj As Object, oChart As Object, oDiagram As Object
|
Dim chartObj As Object, oChart As Object, oDiagram As Object
|
||||||
Dim chartPos As New com.sun.star.awt.Rectangle
|
Dim chartPos As New com.sun.star.awt.Rectangle
|
||||||
|
|
||||||
' === Config ===
|
categories = Array("Temp", "Wind", "Rel Humidity", "Avg Total Liquid Precipitation", "Rainy Days", "Solar Radiation")
|
||||||
categories = Array("Temp", "Wind", "Rel Humidity", "Avg Total Liquid Precipitation", "Rainy Days")
|
chartNames = Array("Temp Chart", "Wind Chart", "RH Chart", "Precip Chart", "Rainy Days Chart", "Solar Chart")
|
||||||
chartNames = Array("Temp Chart", "Wind Chart", "RH Chart", "Precip Chart", "Rainy Days Chart")
|
|
||||||
|
|
||||||
Const inch As Long = 2540 ' 1 inch in 1/100 mm
|
Const inch As Long = 2540
|
||||||
Dim chartWidth As Long, chartHeight As Long
|
Dim chartWidth As Long, chartHeight As Long
|
||||||
chartWidth = 6.5 * inch
|
chartWidth = 6.5 * inch
|
||||||
chartHeight = 6.5 * inch
|
chartHeight = 6.5 * inch
|
||||||
|
|
||||||
Dim startX As Long, startY As Long, chartSpacing As Long
|
Dim startX As Long, startY As Long, chartSpacing As Long
|
||||||
startX = 1000
|
startX = 19 * 1000
|
||||||
startY = 1000
|
startY = 1000
|
||||||
chartSpacing = 9.5 * inch ' vertical space between chart tops
|
chartSpacing = 9.5 * inch
|
||||||
|
|
||||||
oDoc = ThisComponent
|
oDoc = ThisComponent
|
||||||
oSheet = oDoc.Sheets.getByName("Summary")
|
oSheet = oDoc.Sheets.getByName("Summary")
|
||||||
oCharts = oSheet.Charts
|
oCharts = oSheet.Charts
|
||||||
|
|
||||||
Dim outRow As Long
|
' Remove existing charts
|
||||||
outRow = 0
|
Do While oCharts.getCount() > 0
|
||||||
|
oCharts.removeByName(oCharts.getByIndex(0).Name)
|
||||||
|
Loop
|
||||||
|
|
||||||
For iCat = LBound(categories) To UBound(categories)
|
For iCat = LBound(categories) To UBound(categories)
|
||||||
Dim category As String
|
|
||||||
category = categories(iCat)
|
|
||||||
|
|
||||||
' === Locate the table for this category ===
|
|
||||||
foundRow = -1
|
foundRow = -1
|
||||||
For iRow = outRow To oSheet.Rows.Count - 1
|
For iRow = 0 To oSheet.Rows.Count - 1
|
||||||
If InStr(oSheet.getCellByPosition(0, iRow).String, category & " Data Summary") > 0 Then
|
If InStr(oSheet.getCellByPosition(0, iRow).String, categories(iCat)) > 0 Then
|
||||||
foundRow = iRow
|
foundRow = iRow
|
||||||
Exit For
|
Exit For
|
||||||
End If
|
End If
|
||||||
Next iRow
|
Next iRow
|
||||||
|
|
||||||
If foundRow = -1 Then
|
If foundRow = -1 Then GoTo NextCategory
|
||||||
MsgBox "Category " & category & " not found."
|
|
||||||
GoTo NextCategory
|
|
||||||
End If
|
|
||||||
|
|
||||||
titleRow = foundRow
|
titleRow = foundRow
|
||||||
headerRow = titleRow + 1
|
headerRow = titleRow + 1
|
||||||
dataStartRow = headerRow + 1
|
dataStartRow = headerRow + 1
|
||||||
dataEndRow = dataStartRow + 11 ' 12 months
|
dataEndRow = dataStartRow + 11
|
||||||
|
|
||||||
' Find last column in header row
|
|
||||||
lastCol = 0
|
lastCol = 0
|
||||||
Do While Trim(oSheet.getCellByPosition(lastCol, headerRow).String) <> ""
|
Do While Trim(oSheet.getCellByPosition(lastCol, headerRow).String) <> ""
|
||||||
lastCol = lastCol + 1
|
lastCol = lastCol + 1
|
||||||
Loop
|
Loop
|
||||||
lastCol = lastCol - 1
|
lastCol = lastCol - 1
|
||||||
|
|
||||||
If lastCol <= 0 Then
|
If lastCol <= 0 Then GoTo NextCategory
|
||||||
MsgBox "No data columns found for " & category
|
|
||||||
GoTo NextCategory
|
|
||||||
End If
|
|
||||||
|
|
||||||
chartRangeAddress = oSheet.getCellRangeByPosition(0, headerRow, lastCol, dataEndRow).getRangeAddress()
|
chartRangeAddress = oSheet.getCellRangeByPosition(0, headerRow, lastCol, dataEndRow).getRangeAddress()
|
||||||
|
|
||||||
' === Remove existing chart if present ===
|
|
||||||
If oCharts.hasByName(chartNames(iCat)) Then
|
|
||||||
oCharts.removeByName(chartNames(iCat))
|
|
||||||
End If
|
|
||||||
|
|
||||||
' === Position chart ===
|
|
||||||
chartPos.X = startX
|
chartPos.X = startX
|
||||||
chartPos.Y = startY + (iCat * chartSpacing)
|
chartPos.Y = startY + (iCat * chartSpacing)
|
||||||
chartPos.Width = chartWidth
|
chartPos.Width = chartWidth
|
||||||
chartPos.Height = chartHeight
|
chartPos.Height = chartHeight
|
||||||
|
|
||||||
' === Create chart ===
|
|
||||||
oCharts.addNewByName(chartNames(iCat), chartPos, Array(chartRangeAddress), True, True)
|
oCharts.addNewByName(chartNames(iCat), chartPos, Array(chartRangeAddress), True, True)
|
||||||
chartObj = oCharts.getByName(chartNames(iCat))
|
chartObj = oCharts.getByName(chartNames(iCat))
|
||||||
oChart = chartObj.EmbeddedObject
|
oChart = chartObj.EmbeddedObject
|
||||||
|
|
||||||
' === Set diagram to Line Chart ===
|
|
||||||
oDiagram = oChart.createInstance("com.sun.star.chart.LineDiagram")
|
oDiagram = oChart.createInstance("com.sun.star.chart.LineDiagram")
|
||||||
oDiagram.Vertical = False ' horizontal category axis
|
oDiagram.Vertical = False
|
||||||
oDiagram.DataRowSource = com.sun.star.chart.ChartDataRowSource.COLUMNS ' months on X-axis
|
oDiagram.DataRowSource = com.sun.star.chart.ChartDataRowSource.COLUMNS
|
||||||
oChart.setDiagram(oDiagram)
|
oChart.setDiagram(oDiagram)
|
||||||
|
|
||||||
' === Remove main title ===
|
On Error Resume Next
|
||||||
oChart.HasMainTitle = False
|
oDiagram.Wall.FillColor = RGB(255, 255, 255)
|
||||||
|
On Error GoTo 0
|
||||||
|
|
||||||
' === Legend settings ===
|
oChart.HasMainTitle = False
|
||||||
oChart.HasLegend = True
|
oChart.HasLegend = True
|
||||||
If oChart.Legend.supportsService("com.sun.star.chart.ChartLegend") Then
|
If oChart.Legend.supportsService("com.sun.star.chart.ChartLegend") Then
|
||||||
oChart.Legend.Alignment = com.sun.star.chart.ChartLegendPosition.BOTTOM
|
oChart.Legend.Alignment = com.sun.star.chart.ChartLegendPosition.BOTTOM
|
||||||
oChart.Legend.FillColor = RGB(255, 255, 255)
|
oChart.Legend.FillColor = RGB(255, 255, 255)
|
||||||
|
oChart.Legend.Expansion = com.sun.star.chart.ChartLegendExpansion.WIDE
|
||||||
|
oChart.Legend.CharHeight = 8
|
||||||
End If
|
End If
|
||||||
|
|
||||||
' === White background for chart ===
|
|
||||||
If oChart.supportsService("com.sun.star.chart.ChartDocument") Then
|
|
||||||
' Wall (plot area) background
|
|
||||||
oChart.setPropertyValue("WallColor", RGB(255, 255, 255))
|
|
||||||
' Floor (3D charts) background
|
|
||||||
On Error Resume Next
|
|
||||||
oChart.setPropertyValue("FloorColor", RGB(255, 255, 255))
|
|
||||||
On Error GoTo 0
|
|
||||||
' Chart area background (Diagram area)
|
|
||||||
If oDiagram.supportsService("com.sun.star.chart.Diagram") Then
|
|
||||||
oDiagram.setPropertyValue("FillColor", RGB(255, 255, 255))
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
outRow = dataEndRow + 2
|
|
||||||
NextCategory:
|
NextCategory:
|
||||||
Next iCat
|
Next iCat
|
||||||
|
|
||||||
MsgBox "Charts created with requested formatting."
|
MsgBox "Charts created."
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
' Simple Round helper
|
||||||
Function Round(num, Optional decimals)
|
Function Round(num, Optional decimals)
|
||||||
Dim factor
|
Dim factor
|
||||||
If IsMissing(decimals) Then
|
If IsMissing(decimals) Then
|
||||||
|
|||||||
Reference in New Issue
Block a user