서식 힌트

SpreadJS는 수식 결과에 대한 서식 힌트를 지원합니다. 수식을 입력하면 SpreadJS는 수식을 읽고 제안된 서식을 가져와 셀에 설정합니다.

서식 힌트에는 세 가지 단계가 있습니다. 서식 가져오기 참조 셀에서 서식 가져오기 백분율 값에서 백분율 서식 가져오기 특수 함수(예: NOW/TODAY/IRR/NPV)에서 서식 가져오기 동적 참조(예: =INDIRECT(“C3“))에서 서식 가져오기 서식 계산 다음은 몇 가지 서식 계산 전략 목록입니다. 날짜 서식 빼기 날짜 서식은 빈 서식이 됩니다. 날짜 서식 더하기 시간 서식은 날짜/시간 서식이 됩니다 통화 서식 곱하기 숫자 서식은 통화 서식이 됩니다 숫자 서식 곱하기 백분율 서식은 숫자 서식이 됩니다 빈 서식 곱하기 백분율 서식은 빈 서식이 됩니다 The SUM/MAX/MIN/AVEDEV/FLOOR/ROUND/ROUNDUP/ROUNDDOWN/INT/TRUNC 함수는 첫 번째 인수의 첫 번째 셀에서 서식을 사용합니다 서식 적용 서식을 셀에 입력할 때 셀에 명확한 서식이 설정되어 있지 않다면 SpreadJS는 셀에 서식 힌트를 적용합니다. spread.options.formulaFormatHint 옵션을 사용하여 서식 힌트 사용 여부를 제어할 수 있습니다.
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"), { sheetCount: 2 }); initSpread(spread); }; function initSpread(spread) { initWorkbook(spread); initEvents(spread); } function initWorkbook(spread) { var sheet = spread.getActiveSheet(); sheet.suspendPaint(); sheet.setColumnWidth(0, 40); sheet.setColumnWidth(1, 300); sheet.setColumnWidth(2, 150); sheet.setValue(0, 0, 'Preset:'); sheet.setValue(1, 1, 'Init a scientific format'); sheet.setFormatter(1, 2, "0.00E+00"); sheet.setValue(1, 2, 1100); sheet.setValue(0, 0, 'Preset:'); sheet.setValue(2, 1, 'Init a currency format'); sheet.setFormatter(2, 2, "$#,##0;[Red]($#,##0)"); sheet.setValue(2, 2, 1100); sheet.setValue(3, 1, 'Init a date format'); sheet.setFormatter(3, 2, "M/d/yyyy"); sheet.setValue(3, 2, new Date(2023, 2, 23)); sheet.setValue(4, 1, 'Init a number format'); sheet.setFormatter(4, 2, "[red][DBNum1][$-411]0"); sheet.setValue(4, 2, 123); sheet.setValue(6, 0, 'Format Hints:'); sheet.setValue(7, 1, 'Format hints from reference'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 7, col: 2, newValue: "=C3" }); sheet.setValue(8, 1, 'Format hints from functions'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 8, col: 2, newValue: "=TIME(12,30,0)" }); sheet.setValue(9, 1, 'Add operate of date format and time format'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 9, col: 2, newValue: "=C4+C9" }); sheet.setValue(10, 1, 'Number format plus a number'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 10, col: 2, newValue: "=C5+31" }); sheet.setValue(11, 1, 'The currency format in multiplication'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 11, col: 2, newValue: "=C3*95%" }); sheet.setValue(12, 1, 'Format hints from INDIRECT result'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 12, col: 2, newValue: '=INDIRECT("C4")+1' }); sheet.setValue(13, 1, 'Currency format multiplied by scientific format'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 13, col: 2, newValue: '=C2*C3' }); sheet.setValue(14, 1, 'Percent format multiplied by scientific format'); spread.commandManager().execute({ cmd: "editCell", // Use the command to set formula will have the format hints sheetName: "Sheet1", row: 14, col: 2, newValue: '=C2*10%' }); sheet.resumePaint(); } function initEvents(spread) { document.getElementById('formulaFormatHint').onchange = function (e) { var formulaFormatHint = e.target.checked; spread.options.formulaFormatHint = formulaFormatHint; }; }
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta name="spreadjs culture" content="ko-kr"/> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets-resources-ko/dist/gc.spread.sheets.resources.ko.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="app.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="sample-tutorial"> <div id="ss" class="sample-spreadsheets"></div> <div class="options-container"> <p>Cells C8:C15 are auto formatted (using format hints) after the formulas were entered.</p> <div class="sp-demo-childBlock"> <div id="settingsDiv"> <div class="option-row"> <input type="checkbox" id="formulaFormatHint" checked="checked"/> <label for="formulaFormatHint">Enable format hints</label> </div> </div> </div> </div> </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; margin-top: 10px; } label { margin-bottom: 6px; } input { padding: 4px 6px; } input[type=button] { margin-top: 6px; } p{ padding:2px 10px; background-color:#F4F8EB; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }