Loading...
Status (State) refers to the condition of an element, such as selected, hovered, active, etc. States allow elements to display different styles in different conditions, helping users to more intuitively understand the information in the graph.
In G6, the types of states are represented as an array of strings (string[]
), meaning that an element can be in multiple states at the same time. For example, a node can be in both the selected and hovered states.
The predefined states in G6 include:
selected
: Selected stateactive
: Active statehighlight
: Highlighted stateinactive
: Inactive statedisable
: Disabled stateCurrently, G6 supports configuring state styles within style mappings, for example:
{node: {style: {/** Default State Style */},state: {selected: {/** Selected State Style */},[State name]: {/** State Style */}}},edge: {style: {/** Default State Style */},state: {selected: {/** Selected State Style */},[State name]: {/** State Style */}}},combo: {style: {/** Default State Style */},state: {selected: {/** Selected State Style */},[State name]: {/** State Style */}}}}
Before rendering, you can configure the state of elements in the data:
const data = {nodes: [{id: 'node-1',states: ['selected'],},{id: 'node-2',states: ['disabled'],},],edges: [{source: 'node-1',target: 'node-2',states: ['highlight'],},],};
Or, after rendering, you can toggle the state of elements through the API:
// Set node 'node-1' to the selected stategraph.setElementState('node-1', 'selected');// Set node 'node-2' to both the selected and disabled statesgraph.setElementState('node-2', ['selected', 'disabled']);// Set both 'node-1' and 'node-2' to the highlighted stategraph.setElementState({'node-1': ['highlight'],'node-2': ['highlight'],});
G6 provides multiple APIs for retrieving states, or for determining whether an element is in a certain state:
// Retrieve all states of 'node-1'.graph.getElementState('node-1');
When an element is only in the default state, the
getElementState
method returns an empty array[]
.
// Retrieve all selected nodes.graph.getElementDataByState('node', 'selected');
To remove the state of an element, you can also use the setElementState
method to achieve this:
// Remove all states from `node-1` (restore to the default state)graph.setElementState('node-1', []);
When an element is in multiple states, the priority of the states is determined by the order of the state values. For example, if a node's state value is: ['selected', 'highlight']
, then the final state style will be:
Final style = Default state style + Selected state style + Highlight state style
The style of the latter state will override the style of the former state.
To customize states, simply add them to the style mapping, for example:
{node: {// Custom state name: 'custom-state'state: {'custom-state': {/** Custom State Style */}}},}
Toggle State:
graph.setElementState('node-1', 'custom-state');