博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
锐浪 报表, 交叉报表中 对交叉字段,做条件改变背景颜色 .
阅读量:5312 次
发布时间:2019-06-14

本文共 1536 字,大约阅读时间需要 5 分钟。

锐浪 报表, 交叉报表中 对交叉字段,做条件改变背景颜色 .

 

var fieldCount = Report.RunningDetailGrid.ColumnContent.ContentCells.Count;    // 总字段列数var lockFieldCount = Report.DetailGrid.CrossTab.ListCols;      // 锁定字段列数var crossFieldCount = fieldCount - lockFieldCount;for(var colIndex = 1; colIndex <=crossFieldCount;colIndex++){    var crossFieldName = "Amount_" + colIndex;    var AmountContentCell = Report.RunningDetailGrid.ColumnContent.ContentCells.Item(crossFieldName);    var cellName = AmountContentCell.DataField;    var AmountField =Report.RunningDetailGrid.Recordset.Fields.Item(cellName);    var FontBold = false;    var FontItalic = false;    var TextColor;    var BackColor;    if (AmountField.AsFloat > 450)    {        FontBold = true;        FontItalic = true;        TextColor = GetColorValue(0, 255, 0);        BackColor = GetColorValue(255, 0, 0);    }else{        TextColor = GetColorValue(0, 0, 0);        BackColor = GetColorValue(255, 255, 255);    }        SetContentCellBackColor(AmountContentCell,BackColor);    SetContentCellBold(AmountContentCell,FontBold);}/************************ 函数方法 ******************************//** * 设置单元格背景颜色 * @author WUYF */function SetContentCellBackColor(oContentCell,backColor){      oContentCell.BackColor = backColor;}/** * 设置单元格内容粗体 * @author WUYF */function SetContentCellBold(oContentCell,isBold){      oContentCell.Font.Bold = isBold;}function GetColorValue(r,g,b){   return r + g*256 + b*256*256;}

 

posted on
2014-06-17 17:29  阅读(
...) 评论(
...) 收藏

转载于:https://www.cnblogs.com/wuyifu/p/3793203.html

你可能感兴趣的文章
移动硬盘——显示盘符但打不开
查看>>
Memcached
查看>>
项目启动报错java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
查看>>
Cassandra 的Custom Codecs
查看>>
去掉UIToolBar上面的shadowImage
查看>>
DP---最长公共子序列
查看>>
#100天计划# 2013年9月27日
查看>>
HDU-2086 A1 = ?
查看>>
主站点~~~~
查看>>
CC150-Array and string 1.1
查看>>
HDU 5880 Family View (AC自动机)
查看>>
简单说一下UWP中的JumpList
查看>>
jQuery控制TR的显示隐藏
查看>>
左偏树
查看>>
Web设计、黄金分割和神之比例
查看>>
Java入门系列 Java 中的四种引用
查看>>
【转】“正由另一进程使用,因此该进程无法访问该文件”的问题&解决方法
查看>>
python 序列化模块
查看>>
《switch platform‘s GPU sync object architecture》
查看>>
Jprofiler分析WebSphere(配置WebSphereagent代理)
查看>>