積み上げグラフのcolormapについて
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Koki Hashiguchi
il 26 Lug 2019
Commentato: Koki Hashiguchi
il 29 Lug 2019
スクリプトから生成される積み上げグラフにて凡例数が多い場合、
色が被ってしまい各データがどの凡例を表しているか分かりづらくなります。
そこでcolormapをlinesからcolorcubeに変更して、表示色を増やすことは可能でしょうか。
0 Commenti
Risposta accettata
Akira Agata
il 28 Lug 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
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!