Günther Schmidt wrote:
> What would you suggest to go about visualizing a Matrix, or a Graph?
I would recommend using GraphViz to layout the graph. I've made good
experiences with WinGraphViz
(
http://home.so-net.net.tw/oodtsen/wingraphviz/). WinGraphViz can be
used to create a picture (bitmap or vector) of your nodes. You can then
display this in an ImageView.
If you want to interact with the layouted nodes you have to choose a
different output format (plain text with node coordinates) and implement
the interaction on your own. You could even use the plain text format
only and to the drawing on your own.
Another way I followed was to render the Graph as SVG and display this
using an URLPresenter. I then captured some of the events (like link
clicked and so on) and reacted according to it.
> Has anybody built views for that purpose?
I once did a very rough wrapper doing (part of) the stuff above -
although I have to admit that it seems to be deeply burried somewhere.
CU,
Udo