Crystal Reports:图表上缺少条形图

时间:2019-02-12 18:03:49

标签: crystal-reports

在继续努力制作图表时,我在图表上使用以下公式。

if {Command.count} = Maximum ({Command.count}) then Black
else if {Command.count} = Minimum ({Command.count}) then Black
else {Command.count}

也尝试过

if {Command.count} = Maximum ({Command.count}) then crBlack
else if {Command.count} = Minimum ({Command.count}) then crBlack
else {Command.count}

使用上述公式,图表会根据数据显示每个条形,但最大和混合条形除外。太奇怪了,图表只排除了这两个。公式上的颜色是否错误?

我还使用类似的公式创建了单独的最大和最小值,

If {Command.count} = maximum ({Command.count}) then 1 else 0
If {Command.count} = minimum ({Command.count}) then 1 else 0

然后尝试

if Maximum ({Command.count}) = {@MaxValue} then crblack
else if {Command.count} = {@MinValue} then black
else {Command.count}

上面的公式显示了所有的条形,但是图表并没有改变最大值和最小值的颜色。...Gahhh !!!

enter image description here

0 个答案:

没有答案