contentPane.setCellValue(0, cr.col - 3, cr.row, 0);
col列,row行
需要根据你 前面的JS来定位
第一个sheet,cr是啥东西,它的列往左三列,然后它的行,赋值一个0
四个参数的看
https://help.fanruan.com/finereport/doc-view-4008.html
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //当前控件所在的列号(从0开始)
var ro = cr.row; //当前控件所在的行号(从0开始)
--------------------------