Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Could someone help with my issue. I would like to lock a chart in a dashboard from all selection and interactions. I tried to do that in Dev Hub single configurator by disabling selection/interaction. But for some reason it still interacting if choose something in the filter panes or click on other graphs on the page.
Just in your expression for the chart, add {1}
I mean, from :
sum(Measure)
=> sum({1}Measure)
or from
sum({<some conditions here>}Measure)
to
sum({1<some conditions here>}Measure)
with that, ur chart won't change when u filter
What's the reason why your chart should be "locked" ?
Just in your expression for the chart, add {1}
I mean, from :
sum(Measure)
=> sum({1}Measure)
or from
sum({<some conditions here>}Measure)
to
sum({1<some conditions here>}Measure)
with that, ur chart won't change when u filter
Hi, thank you. This solved the issue.