历史版本3 :设置单元格样式接口 返回文档
编辑时间: 内容长度:图片数:目录数: 修改原因:

目录:

makeCellRadius编辑

方法makeCellRadius(radius)

单元格设置圆角

     参数

radius: number

圆角程度,数字

   返回值void
     示例

将获取到的报表块对象定义为 report ,给单元格设置圆角,圆角程度为 15:

report.makeCellRadius(15);

给普通报表中单元格设置圆角,圆角程度为 15:

_g().makeCellRadius(15);

决策报表中,给 report0 报表块的单元格设置圆角,圆角程度为 15:

_g().getWidgetByName('report0').makeCellRadius(15);
  应用示例

给单元格设置圆角,圆角程度为 15:

   移动端不支持移动端。

makeCellStyle编辑