自定义填充
除了鼠标拖拽 *** 作之外,你也可以自定义填充数据。 它允许你在运行时设置,当你想给一片从数据源读出来的数据进行填充设置的时候,这将会非常有用。
有5种类型的填充数据:
Auto: 自动填充类型。
Direction: 填充方向。
Linear:线性填充类型。
Growth: 增长填充类型。
Date: 日期填充类型。
SpreadJS 提供了一些方法来执行填充 *** 作。
// Fills the specified range automatically.
// When the value is a string, the value is copied to other cells.
// When the value is a number, the new value is generated by the TREND formula.
sheet.fillAuto(startRange, fillRange, {series: GC.Spread.Sheets.Fill.FillSeries.column, fillType: GC.Spread.Sheets.Fill.FillType.auto})
// Fills the specified range in the specified direction.
sheet.fillAuto(startRange, fillRange, {direction: GC.Spread.Sheets.Fill.FillDirection.left, fillType: GC.Spread.Sheets.Fill.FillType.direction})
// Fills the specified range linear trend when the source value type is number.
// The next value is generated by the step and stop values.
// The next value is computed by adding the step value to the current cell value.
sheet.fillAuto(startRange, fillRange, {series: GC.Spread.Sheets.Fill.FillSeries.column, step: step, stop: stop, fillType: GC.Spread.Sheets.Fill.FillType.linear})
// Fills the specified range growth trend when the source value type is number.
// The next value is generated by the step and stop values.
// The next value is computed by multiplying the step value with the current cell. sheet.fillAuto(startRange, fillRange, {series: GC.Spread.Sheets.Fill.FillSeries.column, step: step, stop: stop, fillType: GC.Spread.Sheets.Fill.FillType.growth}
// Fills the specified range when the source value type is date.
// The next value is generated by adding the step value to the current value.
// The step value is affected by the fill date unit.
sheet.fillAuto(startRange, fillRange, {series: GC.Spread.Sheets.Fill.FillSeries.column, unit: GC.Spread.Sheets.Fill.FillDateUnit.month, step: step, stop: stop, fillType: GC.Spread.Sheets.Fill.FillType.date})
参考下面网址:网页链接
硬件设备:联想电脑
演示工具:Windows 10
演示软件:Offic 2016
1、打开Excel表格,在需要进行填充的第一个位置输入“1”来作示范。
2、输入完“1”之后,点击“1”所在的单元格,然后点击右上角位置的“填充”。
3、出现下拉选项之后,点击下拉选项中的“序列”。
4、出现新的工具框后,在工具框中调整想要填充的数列的内容。
5、用“等差数列”,”公差“为1,最终项”8“向下填充。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)