Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a list box with four elements and a container with three charts I want to make third chart will be visible only when fourth element is selected from the list box.
Is there any way to do this without using layering.
Thanks in advance.
Reg,
Prakash
Try to use
=GetFieldSelections(FieldName) = Fieldvalue in the properties -> layout of the 3 chart
Eg:-
Suppose your column is
Region
A
B
C
D
Then select D
=GetFieldSelections(FieldName) = 'D'
Write this code in the 3rd chart layout properties
Hi,
For the third chart use the conditional expression in layout like
=If(GetfieldSelections(ListboxColumn)='4thvalue',1,0)
I have tried using this but problem here I am getting is, chart is hide now but tab is still visible in the container
Thanks,
Prakash
First possibility is using Grid style
Second one is using 2 containers
one with 3 charts (hide when 4th item is selected else enable)
and one with 2 charts (hide when 4th item is not selected else enable)
Hi Prakash,
If possible then dont use container, use the separate charts and arranged as it shows like container,
it will help you for conditionaly hide charts with tab.
for that you can use GetfieldSelections() function or you can declare any variable.
Hope you will understand.
- Regards,
Vishal Waghole
Hi Prakash,
If it is not necessary don't use chart in the container another way is used another container with chart for hide the 3rd chart.
Thanks & Regards
Thanks Friends it's working now by layering.
VishalWaghole
The problem using buttons/text instead of container is container's buttons take size along with chart but if we hide third chart along with button/text for that chart it will tedious to map size of buttons/texts
Thanks,
Prakash
Great job and Gud luck dear...
- Regards,
Vishal Waghole
Thanks Vishal