Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Have a Problem with GUI axes
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all! Well I want to make "gscatter" plot in GUI's axes (handles.axes2), but it does not work. here it is code and the error screenshot. Any idea would be a great job for me. Waiting for your response.
gscatter(handles.axes2,[2;2],[1;1],{'xxx';'kkk'})
0 comentarios
Respuestas (1)
Walter Roberson
el 18 de Sept. de 2015
gscatter() does not permit an axes to be passed in, and also does not appear to allow a 'Parent' property/value pair. There is no documented way to force gscatter() to draw on a particular axes.
You can get it to return the handles to the line objects and then you can set() the Parent property of the line objects to be your desired axes, but you would probably also be wanting to get the tick labels and so on that are generated, and you would need to find the legend-like object and take care of it. It might even be a legend; if so then before R2014b, it is in its own axes and so cannot be forced to be in a particular axes.
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!