Are there any way on how to adjust the nodes in the graph?

 Respuesta aceptada

Christine Tobler
Christine Tobler el 17 de En. de 2019

4 votos

You can't directly drag the nodes of a GraphPlot object. Indirectly, you can modify the XData, YData and ZData properties of the object:
p = plot(graph('A', 'B'));
p.XData(1) = 3;
If you are up for a bit of configuration, here is a blog post which shows a way to allow the GraphPlot nodes to be dragged by mouse:

Más respuestas (1)

Walter Roberson
Walter Roberson el 17 de En. de 2019
Editada: Walter Roberson el 17 de En. de 2019

1 voto

No, the callbacks simply are not there inside GraphPlot objects. You would have to fake it with axes level callbacks modifying coordinates inside the object. This is not as straight forward as it might seem as it is a non-trivial object and delegates a bunch to a Java Beans object too.

Categorías

Más información sobre Graph and Network Algorithms en Centro de ayuda y File Exchange.

Productos

Versión

R2018a

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by