Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have datas of 3 snapshots : 09/06/2020, 08/06/2020 and 07/06/2020.
On my page, I have 2 charts :
First one :
Data difference on 2 days (bar chart)
Second one :
Data difference on 1 year (scatter plot)
Problem is that, if I do a selection on my scatter plot, the dimension selected will be "if([date]='09/06/2020', [client]) and not [client], which will ruin the first chart.
Do you have a solution to fix this problem ?
How can I add a condition on my selected data without putting it in the "dimension" ?
Thank you for your attention to my question
Put the barchart into an alternate state (via master elements) so it won't be affected by the selection of your scatterplot.
Hi,
THank you for your answer,
In fact, I would like to be able to keep the interaction between the charts.
The problem is that, If I do a selection on the scatter plot chart, it will select dimension "Client name with date = 08/06/2020"
And as the bar chart display : difference of data between 08/06/2020 and 07/06/2020, it will not show the difference anymore..
Maybe you can fix the measure by using SetExpression {1}.
If(Rank(sum({1}if([date]= '08/06/2020', [data])) - sum({1}if([date]= '09/06/2020', [data]))) <=5, sum({1}if([date]= '09/06/2020', [data])) - sum({1}if([date]= '08/06/2020, [data])))