Data Matrix

DataMatrix code is a 2D matrix code that was developed by ID Matrix in 1987. It was registered to the ISS standard of AIMI in 1996 and the ISO/IEC standard in 2000.

You can create a Data Matrix Code using the BCDataMatrix function in a formula: =BC_DataMatrix(value, color, backgroundColor, eccMode, ecc200SymbolSize, ecc200EndcodingMode, ecc00140Symbole, structureAppend, structureNumber, fileIdentifier, quietZoneRight, quietZoneTop, quietZoneBottom) The function has the following parameters: eccMode : this value represents which ecc mode to use, the value have 'ECC000, ECC050, ECC080, ECC100, ECC140, ECC200'. ecc200SymbolSize : (default value is squareAuto) this value specifies the size of the ECC200 symbol only. ecc200EndcodingMode : (default value is auto) this value specifies which encoding mode to use for the symbol. ecc00_140Symbole : (default value is auto) this value specifies the size of the ECC000-140 symbol only. structureAppend : (default value is false) this value indicates whether the symbol is part of a structured append message, ECC200 only. structureNumber : (default value is 0) this value represent which block the symbol is in the structured append message, which can be between 0 and 15, only for ECC200. fileIdentifier : (default value is 0) this value specifies the file identification, which can be between 1 and 254, only for ECC200.
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById('ss'), {sheetCount: 1}); initSpread(spread); }; var FORMULA = 'BC_DataMatrix'; function initSpread(spread) { var sheet = spread.getSheet(0); spread.suspendPaint(); _initCustomSheet(sheet); spread.resumePaint(); } function _initCustomSheet(sheet) { sheet.name('customSheet'); _setData(sheet); _setStyle(sheet); for (var row = 3; row < 7; row++) { var value = 'CONCAT(B' + (row + 1) + ', ": ",C' + (row + 1) + ')'; sheet.setFormula(row, 3, '=' + FORMULA + '(' + value + ')'); sheet.setFormula(row, 4, '=' + FORMULA + '(' + value + ', , ,"ECC000")'); sheet.setFormula(row, 5, '=' + FORMULA + '(' + value + ', , ,"ECC200")'); } } function _setData(sheet) { sheet.getCell(1, 1).value('Service'); sheet.getCell(1, 2).value('Number'); sheet.getCell(1, 3).value('Data Matrix'); sheet.getCell(2, 3).value('Default'); sheet.getCell(2, 4).value('ECC100'); sheet.getCell(2, 5).value('ECC200'); var dataArray = [ ['Police', 911], ['Telephone Directory Assistance', 411], ['Non-emergency Municipal Services', 311], ['Travel Info Call 511', 511] ]; sheet.setArray(3, 1, dataArray); } function _setStyle(sheet) { for (var row = 3; row < 7; row++) { sheet.setRowHeight(row, 80); } sheet.addSpan(1, 1, 2, 1) sheet.addSpan(1, 2, 2, 1) sheet.addSpan(1, 3, 1, 3) sheet.setColumnWidth(0, 20); sheet.setColumnWidth(1, 200); sheet.setColumnWidth(2, 80); sheet.setColumnWidth(3, 80); sheet.setColumnWidth(4, 80); sheet.setColumnWidth(5, 80); sheet.getRange(1, 1, 2, 5) .foreColor('#000') .backColor('#FFF3CE') .borderLeft(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.thin), {outline: true}) .borderBottom(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.thin), {outline: true}); sheet .getRange(1, 1, 6, 5) .vAlign(GC.Spread.Sheets.VerticalAlign.center) .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .setBorder(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.medium), {outline: true}); sheet.getRange(1, 1, 5, 1).wordWrap(true); }
<!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$/en/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets-barcode/dist/gc.spread.sheets.barcode.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-tutorial"></div> </div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }