GUI graph with strings as axis
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how can I make several strings the x-axis for a graph in a GUI
2 Commenti
Risposta accettata
Adam Danz
il 10 Mag 2019
Modificato: Adam Danz
il 10 Mag 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
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Axis Labels in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!