Perspective - Bind PowerChart pointCount to Text Field

I'm trying to make it so that users can dynamically set the pointCount for a PowerChart. Specifically, I want to be able to zoom in to an area of interest in the graph, set the pointCount to -1, and then export to get a CSV with all collected data points in that visible range.

I've tried configuring a Property Binding on the chart's config/pointCount to a Text Field, but the chart doesn't change when I update the Text Field.

Any thoughts on how I might be able to do this?

Try using a numeric field instead a text field. It may not be working because you are passing in a string when the table config is expecting a number.

Did you also make sure the binding was bidirectional? (small thing but I have made this mistake before)

1 Like

From memory, I remember this not being changeable from the client, as I think I tried the same thing a while ago... But I don't remember what I did last week, so take that with a grain of salt :grimacing: I'll see if it's on my list I gave to IA at ICC

I had used a Text Field instead of a Numeric Entry Field. It is working now. Thanks!

1 Like