SpreadJS Documentation
FillSeries Enumeration
Represents the fill series for drag fill.
Members
MemberDescription
ColumnFills the column data.
RowFills the row data.
Example
This example automatically fills the data in an area of the sheet.
activeSheet.setValue(0, 0, 5);
var start = new GcSpread.Sheets.Range(0, 0, 1, 1);
var r3 = new GcSpread.Sheets.Range(0, 0, 4, 1);
activeSheet.fillAuto(start,r3, GcSpread.Sheets.FillSeries.Column, GcSpread.Sheets.FillDirection.down);
Inheritance Hierarchy

Object
   GcSpread.Sheets.FillSeries

See Also

Reference

GcSpread.Sheets Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.