Bar chart Custom Properties Scripting

I created some custom properties in a bar chart. I want to use them in the bar chart scripting,but i don’t know how to access them. Does someone know how can I do that?

In an event script, the component itself is event.source, so your props would be event.source.propName. In extension methods and similar, you are given a self reference to the component, so the props would be self.propName.

1 Like