如何在RDLC中删除饼图中的空值图例值

时间:2015-12-10 05:24:39

标签: rdlc dynamic-rdlc-generation

如何在RDLC中删除饼图中的空值图例值。我在visibility属性中设置了一个表达式。

=IIf(Fields!grp.Value = "", True, False)  

但它不起作用。但是数据集中的grp值为null。

1 个答案:

答案 0 :(得分:0)

如果您实际上正在处理null,则应尝试以下表达式:

=IIf(IsNothing(Fields!grp.Value), True, False) 

对于空字符串,您也可以尝试:

=IIf(Len(Fields!grp.Value) = 0, True, False)