MATLAB visualization layout problem
Ältere Kommentare anzeigen
I have created very simple MATLAB visualization for my ThingSpeak channel, I have changed visualization background color and added this vocalization to my channel, for some reason which I don't understand I have here one white area which I can't disable:

My code:
hold on
h1 = histogram(allData(:,1));
h2 = histogram(allData(:,2));
h1.NumBins = 10;
h2.NumBins = 10;
title('Temperature');
grid on
set(gca,'color',uint8([238,238,238]))
set(gcf,'color',uint8([238,238,238]))
Do you know how to disable this area or at least change color of the area?
Akzeptierte Antwort
Weitere Antworten (0)
Communitys
Weitere Antworten in ThingSpeak Community
Kategorien
Mehr zu ThingSpeak finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
