GUI graph with strings as axis
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Soham Shah
el 10 de Mayo de 2019
how can I make several strings the x-axis for a graph in a GUI
2 comentarios
Respuesta aceptada
Adam Danz
el 10 de Mayo de 2019
Editada: Adam Danz
el 10 de Mayo de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Axis Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!