How to display Heatmap plot in UI Axes of matlab app designer ?

45 views (last 30 days)
I tried using
heatmap(app.UIFigure.UIAxes,A,XValue_Text,X2Value_Text)
heatmap(app.UIFigure,app.UIAxes,A,XValue_Text,X2Value_Text)
but both options are not working and showing errors.
Please guide.
Thank You
  1 Comment
Ankit
Ankit on 29 Jan 2020
Grid layout managers and scrollable containers do not support axes, polaraxes, geoaxes, or charts (such as heatmap, geobubble, or stackedplot) that can be the child of a figure
You can display it on figure not on the axes. But you want to display it on the UIaxes. I would recommend to contact MATLAB support.
cdata = [45 60 32; 43 54 76; 32 94 68; 23 95 58];
xvalues = {'Small','Medium','Large'};
yvalues = {'Green','Red','Blue','Gray'};
heatmap(app.UIFigure,xvalues,yvalues,cdata)

Sign in to comment.

Accepted Answer

Mohammad Sami
Mohammad Sami on 29 Jan 2020
Edited: Mohammad Sami on 29 Jan 2020
Place Uipanel in the position you want heatmap.
h = heatmap(app.Panel1,tbl,xvar,yvar);
  4 Comments
Rohit Deshmukh
Rohit Deshmukh on 30 Jan 2020
Hi,
the previous solution is working with a different panel.
I figured out that UI axes is superimposing the HeatMap plot.
I tried to disable the UI axes , but still the blank thing is superimposing Heatmap.
Is there a solution by which I somehow delete/disappear the UI Axes when HeatMap plot is selected?

Sign in to comment.

More Answers (1)

Sebastien
Sebastien on 5 Apr 2020
Hello,
I have the same problem with the heatmap function and App Designer. So I tried the Accepted Answer but it just does not work on my side.
I added a blank panel and tried different versions of the code such as:
heatmap(app.Panel,tbl,xvar,yvar)
heatmap(app.Panel,xvar,yvar,tbl)
So I don't understand what I did wrong...
heatmap(xvar,yvar,tbl) works fine outside of the App Designer.
Thanks in advance for any help!
  5 Comments
Mohammad Sami
Mohammad Sami on 8 Apr 2020
If you can't update then you may have to pop up a separate figure window and display the heatmap separately.

Sign in to comment.

Categories

Find more on Data Distribution Plots 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!