现金流日历

以下示例展示了如何使用 SpreadJS 电子表格为 JavaScript 应用程序创建现金流日历。 Cash-Flow表使用Cell Template表中定义的单元格模板在每个单元格中显示日历摘要, Data表包含我们 2020 年的样本数据。

该演示广泛使用了以下强大的 SpreadJS 功能: - SEQUENCE/FILTER 根据一个公式将多个结果返回到一系列单元格。 - RANGEBLOCKSPARKLINE 允许您定义多行/列模板并将该自定义模板应用于单元格。 还使用 Conditional Formatting 将现金短缺天数(负期末余额)涂上红色,将期末余额为正的天数涂上绿色,将中性天数涂上黑色。 此外,使用 CellClick Event 来提取用户从日历中选择日期时发生的所有事务的列表。
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"), { sheetCount: 5 }); initSpread(spread); }; function initSpread(spread) { if (!spread) { return; } spread.fromJSON(cashflow_calendar); var cashflowSheet = spread.getSheetFromName("Cash-Flow"); // on day selection, update a cell used in filtering the data to show detailed transaction list cashflowSheet.bind(GC.Spread.Sheets.Events.SelectionChanged, function (sender, args) { const sheet = args.sheet; const row = args.newSelections[0].row; const col = args.newSelections[0].col; if ((row < 3 || row >= 3 + 6) || (col < 1 || col >= 1 + 7)) return; // set the current date cell so that FILTER would update. sheet.setValue(10, 1, sheet.getValue(row, col)); }); }
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta name="spreadjs culture" content="zh-cn" /> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/data/cashflow_calendar.js" type="text/javascript"></script> <script src="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets-resources-zh/dist/gc.spread.sheets.resources.zh.min.js" type="text/javascript"></script> <script src="app.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="sample-tutorial"> <div id="ss" style="width:100%;height:100%"></div> </div> </body> </html>