Focal Point
[solved]Remove line in Data Visualization Bar Graph

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/6507094496

September 28, 2020, 01:12 PM
WFDevConsultant
[solved]Remove line in Data Visualization Bar Graph
Hi,

We are showing the Visualization Bar Graph next to DATA and it is working well. When the Data is 0, right now it shows straight line and if the data is greater than 0, the bar graph comes correctly.

We would like to remove the straight line when the data is 0 but that is not working.

sample code
DEFINE FILE CAR
DCOST/D12=IF CAR EQ 'DATSUN' THEN 0 ELSE DEALER_COST;
END

TABLE FILE CAR
SUM DCOST
BY COUNTRY
BY CAR
ON TABLE SET STYLE *
GRAPHTYPE=DATA,COLUMN=DCOST,GRAPHCOLOR=AQUA,$
ENDSTYLE
END

We don't want to see the vertical line next to 0. How can we do that?

Thanks

This message has been edited. Last edited by: WFDevConsultant,


8.2.06
Windows, All Formats
September 28, 2020, 05:41 PM
Waz
Here is one way to do it.

DEFINE FILE CAR
DCOST/D12 MISSING ON =IF CAR EQ 'DATSUN' THEN MISSING ELSE DEALER_COST;
END

SET NODATA = '0'

TABLE FILE CAR
SUM DCOST
BY COUNTRY
BY CAR
ON TABLE SET STYLE *
GRAPHTYPE=DATA,COLUMN=DCOST,GRAPHCOLOR=AQUA,$
ENDSTYLE
END



Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

September 29, 2020, 09:17 AM
WFDevConsultant
Thanks Waz.

That worked.


8.2.06
Windows, All Formats