Good morning,
in a XY Chart I have the columns with different background colors. When I click on them I retrieve the data from the selection > data property and everything works fine.
My problem is that I can't manage the selectedHighlightColor property, I want that when I click of the columns the background don't change, how could I do this?
I try to get the background color and then set it back to the selectedHighlightColor property with the Change Script in the data property but it doesn't work
self.parent.parent.getChild("FlexRightTab").getChild("Label").props.text = self.props.selection.data[0]['columnColor']
self.props.selection.selectedHighlightColor = self.props.selection.data[0]['columnColor']
Thank you