Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
chernetsky
Contributor
Contributor

Is it possible to remove element from measures panel?

Hi!

I'm developing visualization extension, and need to remove Number formating widget from measures panel. Or at least disable it. Or remove all options from select options except Custom. How can I do it if it's possible? Is there any possibility to customize all these standard elements?
Screenshot_11.png

Thanks!

1 Solution

Accepted Solutions
ErikWetterberg

Hi,

You could try something like this:

measures: {

          uses: "measures",

          items: {

                 numberFormatting:{

                      show:false

                 }

           }

}

Hope this helps

Erik

View solution in original post

2 Replies
ErikWetterberg

Hi,

You could try something like this:

measures: {

          uses: "measures",

          items: {

                 numberFormatting:{

                      show:false

                 }

           }

}

Hope this helps

Erik

chernetsky
Contributor
Contributor
Author

Great! It's working!

By the way, how could I find this solution by myself? I did not find much information about panels configuration in docs. Maybe I looked in the wrong place?

Thanks a lot!