2018-07-20 16:51:24 +08:00
|
|
|
## mapper
|
|
|
|
|
2018-07-24 13:56:29 +08:00
|
|
|
Associate the input range with the @antv/scale, @antv/attr and @antv/g2/src/component/legend.
|
|
|
|
Constructor parameters:
|
2018-07-20 16:51:24 +08:00
|
|
|
- itemType: 'node'/'edge. The type of the item being mapped.
|
2018-07-24 13:56:29 +08:00
|
|
|
- dim: the dimension of the edge. e.g. 'class'.
|
|
|
|
- range: the range the of mapping result. e.g. [ 0, 1 ], ['#BAE7FF', '#1890FF', '#0050B3'].
|
|
|
|
- channel: the visual channel. e.g.'size', 'color'.
|
2018-07-20 16:51:24 +08:00
|
|
|
- othercfg:
|
2018-07-24 13:56:29 +08:00
|
|
|
- scaleCfg: the configuration of the scale.
|
|
|
|
- legendCfg: the configuration of the legend.
|
2018-07-20 16:51:24 +08:00
|
|
|
null: no lengend.
|
|
|
|
scale: scaling the size of the legend.
|
2018-07-24 13:56:29 +08:00
|
|
|
formatter: a function for formatting the number label of the slider.
|
|
|
|
legendTitle: the title of the legend.
|
|
|
|
legendLayout: the layout way of the legend.'horizontal'/'vertical'
|
|
|
|
legendWdith and lengedHeight: the size of the legend. Defualt: 150*15 for horizontal layout, 15*150 for vertical layout.
|
2018-07-20 16:51:24 +08:00
|
|
|
|
|
|
|
## use
|
|
|
|
|
|
|
|
simple use.
|
|
|
|
|
|
|
|
```js
|
2018-08-08 20:06:28 +08:00
|
|
|
const Mapper = G6.Plugins['tool.mapper'];
|
2018-07-20 16:51:24 +08:00
|
|
|
const nodeColorMapper = new Mapper('node', 'class', 'color', ['#BAE7FF', '#0050B3'], {
|
|
|
|
legendCfg: {
|
|
|
|
scale: 0.5
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const edgeSizeMapper = new Mapper('edge', 'weight', 'size', [2, 20], {
|
|
|
|
legendCfg: null
|
|
|
|
});
|
|
|
|
const data = {
|
|
|
|
nodes: [{
|
|
|
|
id: 'node1',
|
|
|
|
x: 100,
|
|
|
|
y: 200,
|
|
|
|
class: 'class_1'
|
|
|
|
}, {
|
|
|
|
id: 'node2',
|
|
|
|
x: 300,
|
|
|
|
y: 200,
|
|
|
|
class: 'class_1'
|
|
|
|
}, {
|
|
|
|
id: 'node3',
|
|
|
|
x: 100,
|
|
|
|
y: 100,
|
|
|
|
class: 'class_2'
|
|
|
|
}, {
|
|
|
|
id: 'node4',
|
|
|
|
x: 300,
|
|
|
|
y: 100,
|
|
|
|
class: 'class_2'
|
|
|
|
}],
|
|
|
|
edges: [{
|
|
|
|
target: 'node2',
|
|
|
|
source: 'node1',
|
|
|
|
weight: 5
|
|
|
|
}, {
|
|
|
|
target: 'node3',
|
|
|
|
source: 'node2',
|
|
|
|
weight: 20
|
|
|
|
}, {
|
|
|
|
target: 'node4',
|
|
|
|
source: 'node3',
|
|
|
|
weight: 50
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
id: 'mountNode', // dom id
|
|
|
|
plugins: [nodeColorMapper, edgeSizeMapper],
|
|
|
|
height: 1000,
|
|
|
|
});
|
|
|
|
graph.read(data);
|
|
|
|
```
|