Foxtable(狐表)用户栏目专家坐堂 → 单元格绘图


  共有2148人关注过本帖树形打印复制链接

主题:单元格绘图

帅哥哟,离线,有人找我吗?
一笑
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:四尾狐 帖子:808 积分:6213 威望:0 精华:0 注册:2014/3/23 23:02:00
单元格绘图  发帖心情 Post By:2015/12/15 16:18:00 [只看该作者]

示例文件中,进度列属性为字符,不太理解,其次,能否绘制出来显示百分比数字,如40%,而不是40,谢谢


If e.Col.Name = "进度" AndAlso e.Row.IsNull("进度") = False Then
    e.StartDraw()

    Dim
 Width As Integer = (e.Width - 2 )* e.Row("进度") \ 100
    
If e.Row("进度") = 100 Then
        e.Graphics.FillRectangle(Brushes.Green,e.x + 
1,e.y + 1, Width, e.Height - 2)
    Else

        e.Graphics.FillRectangle(Brushes.Red,e.x + 
1,e.y + 1, Width, e.Height - 2)
    End
 If
    e.EndDraw()

End
 
If



 回到顶部
帅哥哟,离线,有人找我吗?
大红袍
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/12/15 16:37:00 [只看该作者]

1、你可以设置成数值列,然后设置成百分比的格式;

 

2、你可以改代码

 

'''
If e.Col.Name = "进度" AndAlso e.Row.IsNull("进度") = False Then
    e.StartDraw()
    Dim Width As Integer = (e.Width - 2 )* e.Row("进度") \ 100
    If e.Row("进度") = 100 Then
        e.Graphics.FillRectangle(Brushes.Green,e.x + 1,e.y + 1, Width, e.Height - 2)
    Else
        e.Graphics.FillRectangle(Brushes.Red,e.x + 1,e.y + 1, Width, e.Height - 2)
    End If
    e.text = e.text & "%"
    e.EndDraw()
End If


 回到顶部