Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclude field from current selections box

Hi,

Is it possible to omit one or more fields from the Current Selections box? I have some LED List boxes where the user chooses which group of charts to display. These selections only clutter up the current selections box and do not affect the displayed data in any way.

/Niclas

1 Solution

Accepted Solutions
Not applicable
Author

One way to do this is to name the fields you want to hide in the same way, for example all starting with %, then in your loading script put in

Set hideprefix='%';

after reload, open any chart properties and uncheck "Show system fields" at the bottom of the Dimensions tab and click OK to save the change.

By doing this, all fields with names starting with % are considered to be system fields and will not show up in current selection

View solution in original post

2 Replies
Not applicable
Author

One way to do this is to name the fields you want to hide in the same way, for example all starting with %, then in your loading script put in

Set hideprefix='%';

after reload, open any chart properties and uncheck "Show system fields" at the bottom of the Dimensions tab and click OK to save the change.

By doing this, all fields with names starting with % are considered to be system fields and will not show up in current selection

Not applicable
Author

Awesome, worked like a charm.

Thanks a lot.