|
Search this API | ||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Class Summary | |
---|---|
AbstractLabelingAlgorithm | An abstract base class for generic labeling algorithms which place labels of graphs. |
GreedyMISLabeling | A generic labeling algorithm for placing the labels of a graph, which reduces the labeling problem to the maximum independent set (MIS) problem and solves the problem using a greedy strategy. |
MISLabelingAlgorithm | A base class for generic labeling algorithms which solve the labeling problem by reducing it to the maximum independent set (MIS) problem. |
SALabeling | A generic labeling algorithm for placing the labels of a graph. |
Provides algorithms for the automatic placement of node and edge labels, so called generic labeling algorithms.
Labeling algorithms only place the labels of a graph. Positions of nodes and edges are not changed. The algorithms are especially useful if a graph already has a good layout of nodes and edges, but labels need to be arranged in a separate step. If, for example, a layout algorithm which does not offer sufficient labeling support is used, then generic labeling algorithms can be applied in a second step.
Two concrete algorithm implementations are offered:
SALabeling
:
Solves the labeling problem using a sophisticated simulated annealing approach.
GreedyMISLabeling
:
Solves the labeling problem using a greedy strategy. This is the fastest variant offered. Results
may be less sophisticated than those produced by SALabeling
, however.
Both algorithms are based on a reduction of the labeling problem to the maximum independent set (MIS)
problem. MISLabelingAlgorithm
is the base for all algorithms reducing the
labeling problem to the MIS problem.
Class AbstractLabelingAlgorithm
offers basic functionality shared by all
generic labeling algorithms.
See the yFiles Developer's Guide section on Automatic Label Placement.
SALabeling
|
© Copyright 2000-2022, yWorks GmbH. All rights reserved. |
||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |