積み上げグラフのcolormapについて
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Koki Hashiguchi
am 26 Jul. 2019
Kommentiert: Koki Hashiguchi
am 29 Jul. 2019
スクリプトから生成される積み上げグラフにて凡例数が多い場合、
色が被ってしまい各データがどの凡例を表しているか分かりづらくなります。
そこでcolormapをlinesからcolorcubeに変更して、表示色を増やすことは可能でしょうか。
0 Kommentare
Akzeptierte Antwort
Akira Agata
am 28 Jul. 2019
たとえば以下のような方法ではいかがでしょうか?
% Sample data and color map
y = rand(3,10);
color = colorcube(size(y,2));
% Visualize the data
figure
h = bar(y,'stacked');
for kk = 1:numel(h)
h(kk).FaceColor = color(kk,:);
end
legend
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!