mirror of
https://gitee.com/antv/g6.git
synced 2024-12-16 02:21:25 +08:00
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
|
import { Graph as BaseGraph, Extensions, Util, extend } from '@antv/g6';
|
||
|
|
||
|
const Graph = extend(BaseGraph, {
|
||
|
plugins: {
|
||
|
toolbar: Extensions.Toolbar,
|
||
|
timebar: Extensions.Timebar,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const container = document.getElementById('container');
|
||
|
const width = container.scrollWidth;
|
||
|
const height = (container.scrollHeight || 500) - 110;
|
||
|
|
||
|
const startTime = new Date('2023-08-01').getTime();
|
||
|
const diff = 3600 * 24 * 1000;
|
||
|
const timebarData = [10, 2, 3, 4, 15, 10, 5, 0, 3, 1].map((value, index) => ({
|
||
|
time: new Date(startTime + index * diff),
|
||
|
value,
|
||
|
label: new Date(startTime + index * diff).toLocaleString(),
|
||
|
}));
|
||
|
const graphData = {
|
||
|
nodes: new Array(49).fill(0).map((_, index) => ({
|
||
|
id: `node-${index}`,
|
||
|
data: {
|
||
|
timestamp: startTime + (index % 10) * diff,
|
||
|
value: index % 20,
|
||
|
label: new Date(startTime + (index % 10) * diff).toLocaleString(),
|
||
|
},
|
||
|
})),
|
||
|
edges: new Array(49).fill(0).map((_, i) => ({
|
||
|
id: `edge-${i}`,
|
||
|
source: `node-${i % 30}`,
|
||
|
target: `node-${(i % 20) + 29}`,
|
||
|
data: {
|
||
|
edgeType: 'e1',
|
||
|
},
|
||
|
})),
|
||
|
};
|
||
|
|
||
|
new Graph({
|
||
|
container: 'container',
|
||
|
width,
|
||
|
height,
|
||
|
data: graphData,
|
||
|
modes: {
|
||
|
default: ['drag-canvas', 'drag-node', 'zoom-canvas'],
|
||
|
},
|
||
|
plugins: [
|
||
|
{
|
||
|
type: 'timebar',
|
||
|
key: 'timebar',
|
||
|
data: timebarData,
|
||
|
width: 450,
|
||
|
loop: true,
|
||
|
},
|
||
|
],
|
||
|
});
|