基本应用

你可以使用自动填充功能通过一种模式或者其他单元格上的数据来填充单元格,来代替通过手动的在工作表上输入数据来填充单元格。当您为用户设计模板时,在您的数据中有某种重复或模式时,这是非常有用的。

为了快速填充几种类型的数据序列,你可以选择一些单元格并且拖拽填充柄。要使用填充柄,你需要选择那些你希望作为基础数据的单元格,然后拖拽填充柄穿过你想要填充的单元格。 你可以通过在拖拽填充柄选择一个或多个单元格的时候按下 Ctrl 键来取消自动填充。在你完成拖拽填充之后,会显示一个自动填充选项按钮。你可以点击按钮来选择如何填充选择区域。例如,你可以选择只填充格式。自动填充选项如下: CopyCells: 使用数据对象填充的单元格,包括值,格式以及公式。 FillSeries: 连续填充单元格。 FillFormattingOnly: 只填充格式。. FillWithoutFormatting: 只填充值,不填充格式。 你也通过拖拽回起始区域来清除填充的值。 当你拖拽填充柄时,SpreadJS 默认情况下会显示新的显示填充区域边界的提示,你可以通过以下的示例来关闭提示: 自定义填充列表 SpreadJS 通过自定义填充列表来进一步增强拖拽填充的能力。他将会根据自定义的列表来填充对应的值。 SpreadJS 内置了几种自定义列表,例如一周中的每天星期列表,一年中的月份列表。 此外,你也可以设置自定义的列表序列,例如:
<template> <div class="sample-tutorial"> <gc-spread-sheets class="sample-spreadsheets" @workbookInitialized="initSpread"> <gc-worksheet></gc-worksheet> <gc-worksheet></gc-worksheet> <gc-worksheet></gc-worksheet> </gc-spread-sheets> <div class="options-container"> <div class="option-row"> <p> Try checking the options on the right side and following the instructions in the sheet to see how those options affect the fill operations. </p> <label for="dragFillType">Default Drag Fill Type:</label> <select id="dragFillType" title="Select one for default drag fill type." v-model.number="defaultDragFillType" @change="updateDefaultDragFillType"> <option value=5 selected="selected">Auto</option> <option value=0>Copy Cells</option> <option value=1>Fill Series</option> <option value=2>Fill Formatting Only</option> <option value=3>Fill Without Formatting</option> </select> </div> <div class="option-row"> <input type="checkbox" id="chkShowDragFillTip" v-model="showDragFillTip" @change="updateShowDragFillTip" /> <label for="chkShowDragFillTip">Show Drag Fill Tip</label> </div> <div class="option-row"> <input id="chkShowDragFillSmartTag" type="checkbox" v-model="showDragFillSmartTag" @change="updateShowDragFillSmartTag" /> <label for="chkShowDragFillSmartTag">Show Drag Fill Smart Tag</label> </div> </div> </div> </template> <script> import Vue from "vue"; import '@grapecity-software/spread-sheets-resources-zh'; GC.Spread.Common.CultureManager.culture("zh-cn"); import '@grapecity-software/spread-sheets-vue'; import GC from '@grapecity-software/spread-sheets'; import './styles.css'; let App = Vue.extend({ name: "app", data: function() { return { spread: null, showDragFillTip: true, showDragFillSmartTag: true, defaultDragFillType: 5 }; }, methods: { updateShowDragFillTip() { this.spread.options.showDragFillTip = this.showDragFillTip; }, updateShowDragFillSmartTag() { this.spread.options.showDragFillSmartTag = this.showDragFillSmartTag; }, updateDefaultDragFillType() { this.spread.options.defaultDragFillType = this.defaultDragFillType; }, initSpread(spread) { this.spread = spread; let customList = [ ['Light', 'Sun', 'Moon', 'Star', 'Sky', 'Rain', 'Cloud'], ['Dog', 'Cat', 'Lion', 'Fish', 'Snake'] ]; spread.options.customList = customList; spread.suspendPaint(); initSheet0(spread); initsheet1(spread); initsheet2(spread); spread.resumePaint(); } } }); const initSheet0 = (spread) => { let sheet = spread.getSheet(0); sheet.name("Base Fill"); sheet.setValue(1, 1, "Select a cell with data below, hold your cursor over the bottom right border until you see the ‘+’,"); sheet.setValue(2, 1, "Then drag down to autofill the cell data. You can also hold the <Ctrl> key down to auto-increment the values and you can double-click to fill it automatically:"); let simpleData = [ [1.0, 1], [1.1, 2] ]; let dateData = [ [new Date(2018, 3, 1), new Date(2017, 11, 1), new Date(2018, 2, 31), new Date(2017, 11, 31)], [new Date(2018, 4, 1), new Date(2018, 0, 1), new Date(2018, 3, 30), new Date(2018, 0, 31)] ]; sheet.setArray(4, 1, simpleData); sheet.setArray(4, 4, dateData); for (let i = 6; i < 15; i++) { sheet.setValue(i, 0, "Fill Data"); } for (let i = 4; i < 8; i++) { sheet.setColumnWidth(i, 80); } sheet.getRange(4, 4, 2, 4).formatter('m/d/yyyy'); }; const initsheet1 = (spread) => { let sheet = spread.getSheet(1); sheet.name("String Fill"); sheet.setValue(0, 0, 'N: number, S: string. DragFill for string, detecting number from end to start, SN first and NS second. Trend N if S is same.'); let title = sheet.getCell(0, 0); title.font("15px 'Franklin Gothic Medium'"); sheet.setValue(1, 0, 'String contains numbers only. Please drag up or down.'); sheet.setValue(6, 0, '123'); sheet.setValue(7, 0, '125'); sheet.setValue(6, 2, '-3'); sheet.setValue(7, 2, '-2'); sheet.setValue(6, 4, '003'); sheet.setValue(7, 4, '007'); sheet.setValue(1, 8, 'String contains number in the end of string. Please drag up or down and choose "Fill Series" for the single one.'); sheet.setValue(6, 8, 'a2'); sheet.setValue(6, 10, 'a1'); sheet.setValue(7, 10, 'a5'); sheet.setValue(6, 12, 'a001'); sheet.setValue(7, 12, 'a002'); sheet.setValue(6, 14, '1a2a3a4a5'); sheet.setValue(7, 14, '1a2a3a4a6'); sheet.setColumnWidth(14, 100); sheet.setValue(24, 0, 'String contains number in the first of string. Please drag up or down.'); sheet.setValue(30, 0, '5a'); sheet.setValue(31, 0, '2a'); sheet.setValue(30, 2, '003b'); sheet.setValue(31, 2, '005b'); sheet.setValue(30, 4, '1a1a1a'); sheet.setValue(31, 4, '2a1a1a'); sheet.setValue(24, 8, 'String just to copy. Please drag up or down.'); sheet.setValue(30, 8, 'a1a1'); sheet.setValue(31, 8, 'a2a2'); sheet.setValue(30, 10, '1a1'); sheet.setValue(31, 10, '2a2'); sheet.setValue(30, 12, 'a1'); sheet.setValue(31, 12, 'b2'); }; const initsheet2 = (spread) => { let sheet = spread.getSheet(2); sheet.name("Custom Fill"); sheet.setValue(0, 0, 'Custom list for dragfill. Please drag up or down.'); sheet.setValue(6, 0, 'Mar'); sheet.setValue(7, 0, 'Apr'); sheet.setValue(6, 2, 'June'); sheet.setValue(7, 2, 'July'); sheet.setValue(6, 4, 'Mon'); sheet.setValue(7, 4, 'Tue'); sheet.setValue(6, 6, 'Friday'); sheet.setValue(7, 6, 'Saturday'); sheet.setValue(20, 0, 'The custom list customized two array currently, and shows as following. Enter one or more consecutive ones in the list to dragfill.'); let customList = sheet.parent.options.customList; for (let i = 0; i < customList.length; i++) { let itemList = customList[i]; sheet.setValue(21 + i, 0, 'List ' + i + ": "); itemList.forEach(function(item, index) { sheet.setValue(21 + i, index + 1, item); }); } }; new Vue({ render: h => h(App) }).$mount('#app'); </script>
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/zh/vue/node_modules/@grapecity-software/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <!-- SystemJS --> <script src="$DEMOROOT$/zh/vue/node_modules/systemjs/dist/system.src.js"></script> <script src="$DEMOROOT$/spread/source/data/ellipsis.js" type="text/javascript"></script> <script src="systemjs.config.js"></script> <script> System.import('./src/app.vue'); System.import('$DEMOROOT$/zh/lib/vue/license.js'); </script> </head> <body> <div id="app" style="height: 100%;"></div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } .sample-spreadsheets { width: calc(100% - 280px); height: 100%; overflow: hidden; float: left; } .options-container { float: right; width: 280px; padding: 12px; height: 100%; box-sizing: border-box; background: #fbfbfb; overflow: auto; } .option-row { font-size: 14px; padding: 5px; margin-top: 10px; } select { padding: 4px 8px; width: 100%; box-sizing: border-box; margin-top: 4px; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }
(function(global) { System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' }, '*.vue': { loader: 'vue-loader' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { '@grapecity-software/spread-sheets': 'npm:@grapecity-software/spread-sheets/index.js', '@grapecity-software/spread-sheets-resources-zh': 'npm:@grapecity-software/spread-sheets-resources-zh/index.js', '@grapecity-software/spread-sheets-vue': 'npm:@grapecity-software/spread-sheets-vue/index.js', '@grapecity-software/jsob-test-dependency-package/react-components': 'npm:@grapecity-software/jsob-test-dependency-package/react-components/index.js', 'jszip': 'npm:jszip/dist/jszip.js', 'css': 'npm:systemjs-plugin-css/css.js', 'vue': 'npm:vue/dist/vue.min.js', 'vue-loader': 'npm:systemjs-vue-browser/index.js', 'tiny-emitter': 'npm:tiny-emitter/index.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, rxjs: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' } } }); })(this);