Questions tagged [graphx-net]

GraphX for .NET

5 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
  • 8
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
  • 8
0
votes
0 answers

Using QuikGraph and GraphX to show graph on visual studio C# form

I want to create a Visual Studio C# console application that allows me to render certain graphs to the form and let the user manipulate them. I plan to use QuikGraph as a library to manage my graph and use GraphX for rendering. It says that this…
Arjon Arts
  • 39
  • 3
0
votes
1 answer

How to highlight a subgraph in the original graph in GraphX for .NET?

I have an original graph built in GraphArea (WPF) and its subgraph as a list of vertices and edges. I want to highlight this subgraph on the original graph. But the method HighlightBehaviour.SetHighlighted(DependencyObject obj, bool value) requires…
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
  • 5,088
  • 5
  • 44
  • 66