積み上げグラフのcolormapについて

6 visualizzazioni (ultimi 30 giorni)
Koki Hashiguchi
Koki Hashiguchi il 26 Lug 2019
Commentato: Koki Hashiguchi il 29 Lug 2019
スクリプトから生成される積み上げグラフにて凡例数が多い場合、
色が被ってしまい各データがどの凡例を表しているか分かりづらくなります。
そこでcolormapをlinesからcolorcubeに変更して、表示色を増やすことは可能でしょうか。

Risposta accettata

Akira Agata
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
stackedBar.png
  1 Commento
Koki Hashiguchi
Koki Hashiguchi il 29 Lug 2019
Akira Agata様
ご回答ありがとうございます。

Accedi per commentare.

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!