The click on the figures fires only once and all further clicks are ignored. As you can see here below on the figure the clickdata for each figure are held in an list of 4 positions.
According to the figure here below I have 4 graphs that can send clickdata. The issue is that once an event has fired for a graph it doesn’t fire anymore despite further clicks on the same graph. The expected behaviour for me would be that an event fires up for each click on the graph.
I can’t check this behaviour right now, but you can add an output to your callback addressing the clickData property an reset it returning {} as it does not reset automatically.
I have an MRE on my Github where I had to do this.
Thanks for the hint.
Returning {} didn’t work for me, i had to set to None for each clickdata placeholder in the list graph_strategies_deltas_clickdata.
like this:
[clickData if clickData == None else None for clickData in graph_strategies_deltas_clickdata]