Questions tagged [graphx-net]

GraphX for .NET

3 questions
2
votes
0 answers

Build directed graph on windows forms with data from DB

I have an objects with data, and each object connected to other objects. (Like object1->object2, object2->object3, object1->object3). For example objects and connections represented by two classes: class Object { public int Id{get;set;} …
Paul
  • 47
  • 7
1
vote
1 answer

GraphX For .Net Two DataEdges from one DataVertex to another

I'm using GraphX for .Net library to build graph based on my data. I have relations: obj1->obj2 (type1), obj2->obj3(type1), obj1->obj2(type2) (type1 and type2 is a type of line, which connects two objects). I'm adding DataVertex this way: var…
Paul
  • 47
  • 7
0
votes
1 answer

C# GraphX highlight vertex on click

I'm using GraphX for .NET and I'm trying to highlight a vertex when the user clicks on it. I registered for the VertexSelected event: public class MyGraphArea : GraphArea { public MyGraphArea() { …
baruchiro
  • 2,609
  • 2
  • 25
  • 43