Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created Pie chart to show projected spend. I want to show the chart only for current fiscal year
So chart should be visible if Fiscal year is 2022 and if it is not 2022 then chart should not be visible.
It will be great if anyone can help me with this.
Thank you.
create master iteam of your Pie chart.
and use container and add master iteam(Pie chart) then you can able to hide and show based on condition
Hi Nitin,
Do we need to write any expression for condition?
for your scenario might be
If (Year=Max(Year),1,0)
or
Year=Max(Year)
or
if (GetFieldSelections(Year)=Max(Year), 1 , 0)
Hello,
You also can use Calculation Conditions in chart where you can ask user to make particular selection to view chart.
Chart will not be visible until use makes a selection (Object will be visible).
Thanks,
Ashutosh