GUI graph with strings as axis

15 vues (au cours des 30 derniers jours)
Soham Shah
Soham Shah le 10 Mai 2019
Modifié(e) : Adam Danz le 10 Mai 2019
how can I make several strings the x-axis for a graph in a GUI
  2 commentaires
Adam Danz
Adam Danz le 10 Mai 2019
Do you want to set the x tick labels?
Soham Shah
Soham Shah le 10 Mai 2019
yes how can I do that?

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 10 Mai 2019
Modifié(e) : Adam Danz le 10 Mai 2019
Here's a demo
ax = axes(); %Instead of this line, use the axis handle from your GUI handles
xTickVals = [2,4,6]; %<-- where you want the ticks
xlim([1,7]) %<-- make sure the ticks are within range
xTickLables = {'RO', 'BG', 'TR'}; %<-- your tick labels
set(ax, 'XTick', xTickVals, 'XTickLabels', xTickLables) % <-- set the ticks & labels

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by