SpreadJS Documentation
Setting Code39
SpreadJS Documentation > Developer's Guide > Managing Data Visualization and Objects > Working with Barcodes > Setting Code39

Code 39 is a linear barcode that uses a total of nine bars to represent each symbol which includes numeric characters, upper case characters and some special characters ("%" , "*",  "$",  "/",  "." ,  "-",  "+").

A screenshot depicting Code39 barcode sparkline is shared below.

Formula definition

You can set Code39 sparkline in a worksheet using the following formula:

=BC_CODE39(value, color, backgroundColor, showLabel, labelPosition, labelWithStartAndStopCharacter, checkDigit, nwRatio, fullASCII, fontFamily, fontStyle, fontWeight, fontTextDecoration, fontTextAlign, fontSize, quietZoneLeft, quietZoneRight, quietZoneTop, quietZoneBottom)

Parameter

Name Description
value A string that represents encode on the symbol of QRCode.
color A color that represents the barcode color. The default value is 'rgb(0,0,0)'.
backgroundColor A color that represents the barcode backgroundcolor. The default value is 'rgb(255, 255, 255)'
showLabel Specifies whether to show label text when the barcode has label.
labelPosition ​A value that represents the label position when the label is shown.
labelWithStartAndStopCharacter Specifies whether to show the start and stop character in the label.  The default value is 'false'.
checkDigit Specifies whether the symbol needs a check digit. The default value is 'false'.
nwRatio A value that represents the wide and narrow bar ratio. It has values 2|3. The default value is '3'.
fullASCII Specifies whether to support full ASCII for Code39. The default value is 'false'.
fontFamily A string that represents the label text fontFamily. The default value is 'sans-serif'.
fontStyle A string that represents the label text fontStyle. The default value is 'normal'.
fontWeight A string that represents the label text fontWeight. The default value is 'normal'.
fontTextDecoration A string that represents the label text fontTextDecoration. The default value is 'none'.
fontTextAlign A string that represents the label text fontTextAlign. The default value is 'center'.
fontSize A string that represents the label text fontSize. The default value is '12px'.
quietZoneLeft A value that represents the size of left quiet zone.
quietZoneRight A value that represents the size of right quiet zone.
quietZoneTop A value that represents the size of top quiet zone.
quietZoneBottom A value that represents the size of bottom quiet zone.

Using Code

This example code sets Code39 sparkline in the worksheet.

JavaScript
Copy Code

var sheet = spread.getActiveSheet();

// Set Code39 Barcode Sparkline
sheet.setValue(3, 1, "Code39", GC.Spread.Sheets.SheetArea.viewport);
sheet.setValue(3, 2, "3934712708295", GC.Spread.Sheets.SheetArea.viewport);

// Set Style
sheet.setRowHeight(3, 100);
for (var col = 1; col < 4; col++)
{
    sheet.setColumnWidth(col, 200);
}
sheet.getRange(3, 0, 1, 4).hAlign(GC.Spread.Sheets.HorizontalAlign.center);
sheet.getRange(3, 0, 1, 4).vAlign(GC.Spread.Sheets.VerticalAlign.center);

// Set Formula
sheet.setFormula(3, 3, '=BC_CODE39(C4)');