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

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

Réponse acceptée

Akira Agata
Akira Agata le 28 Juil 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 commentaire
Koki Hashiguchi
Koki Hashiguchi le 29 Juil 2019
Akira Agata様
ご回答ありがとうございます。

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur カラーマップ dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!