K
- Generic type of the attribute mapped.V
- Generic type of the VisualProperty used in this mapping.public interface ContinuousMapping<K,V> extends VisualMappingFunction<K,V>
An interface describing a continuous mapping from attribute value to visual property.
Fully Supported Node Visual Properties
BasicVisualLexicon.NODE_FILL_COLOR
BasicVisualLexicon.NODE_BORDER_PAINT
BasicVisualLexicon.NODE_BORDER_WIDTH
BasicVisualLexicon.NODE_BORDER_TRANSPARENCY
BasicVisualLexicon.NODE_LABEL_COLOR
BasicVisualLexicon.NODE_LABEL_FONT_SIZE
BasicVisualLexicon.NODE_LABEL_WIDTH
BasicVisualLexicon.NODE_LABEL_TRANSPARENCY
BasicVisualLexicon.NODE_SIZE
BasicVisualLexicon.NODE_WIDTH
BasicVisualLexicon.NODE_HEIGHT
BasicVisualLexicon.NODE_TRANSPARENCY
BasicVisualLexicon.NODE_LABEL_FONT_FACE
Fully Supported Edge Visual Properties
BasicVisualLexicon.EDGE_PAINT
BasicVisualLexicon.EDGE_TRANSPARENCY
BasicVisualLexicon.EDGE_LABEL
BasicVisualLexicon.EDGE_LABEL_COLOR
BasicVisualLexicon.EDGE_LABEL_TRANSPARENCY
BasicVisualLexicon.EDGE_WIDTH
BasicVisualLexicon.EDGE_LABEL_FONT_SIZE
BasicVisualLexicon.EDGE_LABEL_WIDTH
BasicVisualLexicon.EDGE_LINE_TYPE
BasicVisualLexicon.EDGE_BEND
BasicVisualLexicon.EDGE_SOURCE_ARROW_SHAPE
BasicVisualLexicon.EDGE_TARGET_ARROW_SHAPE
BasicVisualLexicon.EDGE_TOOLTIP
Partially Supported Node Visual Properties
BasicVisualLexicon.NODE_SHAPE
BasicVisualLexicon.NODE_LABEL
BasicVisualLexicon.NODE_TOOLTIP
BasicVisualLexicon.NODE_BORDER_LINE_TYPE
BasicVisualLexicon.NODE_LABEL_FONT_FACE
BasicVisualLexicon.NODE_NESTED_NETWORK_IMAGE_VISIBLE
Partially Supported Edge Visual Properties
Module: vizmap-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>vizmap-api</artifactId> </dependency>
Modifier and Type | Field and Description |
---|---|
static String |
CONTINUOUS
A label string for this mapping.
|
Modifier and Type | Method and Description |
---|---|
void |
addPoint(K value,
BoundaryRangeValues<V> brv)
Adds a New Data Point.
|
List<ContinuousMappingPoint<K,V>> |
getAllPoints()
Gets all Data Points.
|
ContinuousMappingPoint<K,V> |
getPoint(int index)
Gets Specified Point.
|
int |
getPointCount()
Gets Total Point Count.
|
void |
removePoint(int index)
Removes a Point from the List.
|
apply, getMappedValue, getMappingColumnName, getMappingColumnType, getVisualProperty
static final String CONTINUOUS
List<ContinuousMappingPoint<K,V>> getAllPoints()
void addPoint(K value, BoundaryRangeValues<V> brv)
void removePoint(int index)
index
- The index of the Point to remove.int getPointCount()
ContinuousMappingPoint<K,V> getPoint(int index)
index
- Index Value.Copyright 2011-2015 Cytoscape Consortium. All rights reserved.