use color bar as item in App-designer drop down list

8 views (last 30 days)
Hi:
I want to update my app-designer to select color, what I have now, is either to use color name ('r','b') or RGB value as a element of drop down list.
I want to see if there is anyway to make it more interactive, for example, the drop down list can show a list of color block, as the figure attached.
Capture.JPG
is there anyway to do this?
Thanks!
Yu

Answers (1)

Adam Danz
Adam Danz on 18 May 2019
Edited: Adam Danz on 22 May 2019
I don't think that's possible in app designer. Here's are two alternatives that will require a little work but they're doable.
Idea 1: clickable axis
You could add a new axis in place of the drop down list (same location, same shape) and it can display the blocks of colors as in your image. That's easy using rectangle() or patch() or fill().
Then you can use ginput() to capture the location of the mouse click within the axes. Once you have that coordinate, there are several ways you could determine which rectangle the click was in. Then grab the color values from that rectangle.
Idea 2: colored buttons
I think I like this idea better. You could add a stack of small buttons (button group) that do not contain any text but are merley colored (as in your image). When the user selects a certain button, a callback function can assign the color value.
Idea 3: use a knob
In app designer you can use a discrete knob so the user can select a color. Next to the knob you could have a tiny axis or botton that changes color with the knob selection so the user can see the result.
If you get stuck while implementing any of these ideas, I'd be happy to continue the discussion.
  2 Comments
Yu Li
Yu Li on 22 May 2019
Thanks for your reply. I think they are all not as perfect as what I have expected.
I have contacted Mathworks and they have add enhancement request of this feature for future release.
Bests,
Yu
Adam Danz
Adam Danz on 22 May 2019
Edited: Adam Danz on 23 May 2019
Ok :) These ideas above can all be implemented fairly easily. Waiting for the feature update (if it's ever implemented) will take months or years. Just FYI.

Sign in to comment.

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!