mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 05:09:07 +08:00
default node support color property
This commit is contained in:
parent
8cc2151e8d
commit
d43b2551e8
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@antv/g6",
|
"name": "@antv/g6",
|
||||||
"version": "3.1.1",
|
"version": "3.1.2",
|
||||||
"description": "graph visualization frame work",
|
"description": "graph visualization frame work",
|
||||||
"main": "build/g6.js",
|
"main": "build/g6.js",
|
||||||
"homepage": "https://github.com/antvis/g6",
|
"homepage": "https://github.com/antvis/g6",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
version: '3.1.1',
|
version: '3.1.2',
|
||||||
rootContainerClassName: 'root-container',
|
rootContainerClassName: 'root-container',
|
||||||
nodeContainerClassName: 'node-container',
|
nodeContainerClassName: 'node-container',
|
||||||
edgeContainerClassName: 'edge-container',
|
edgeContainerClassName: 'edge-container',
|
||||||
|
@ -58,17 +58,12 @@ Shape.registerNode('circle', {
|
|||||||
labelPosition: 'center',
|
labelPosition: 'center',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, icon: defaultIcon } = this.options;
|
const { icon: defaultIcon } = this.options;
|
||||||
const { style: customStyle, icon: customIcon } = customOptions;
|
const { icon: customIcon } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
||||||
const size = this.getSize(cfg);
|
|
||||||
const r = size[0] / 2;
|
|
||||||
const keyShape = group.addShape('circle', {
|
const keyShape = group.addShape('circle', {
|
||||||
attrs: {
|
attrs: style
|
||||||
...style,
|
|
||||||
r
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { width, height, show } = icon;
|
const { width, height, show } = icon;
|
||||||
@ -165,7 +160,11 @@ Shape.registerNode('circle', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const size = this.getSize(cfg);
|
const size = this.getSize(cfg);
|
||||||
const r = size[0] / 2;
|
const r = size[0] / 2;
|
||||||
const styles = Util.mix({}, {
|
const styles = Util.mix({}, {
|
||||||
|
@ -55,17 +55,13 @@ Shape.registerNode('diamond', {
|
|||||||
labelPosition: 'center',
|
labelPosition: 'center',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, icon: defaultIcon } = this.options;
|
const { icon: defaultIcon } = this.options;
|
||||||
const { style: customStyle, icon: customIcon } = customOptions;
|
const { icon: customIcon } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
||||||
|
|
||||||
const path = this.getPath(cfg);
|
|
||||||
const keyShape = group.addShape('path', {
|
const keyShape = group.addShape('path', {
|
||||||
attrs: {
|
attrs: style
|
||||||
path,
|
|
||||||
...style
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { width: w, height: h, show } = icon;
|
const { width: w, height: h, show } = icon;
|
||||||
@ -176,7 +172,11 @@ Shape.registerNode('diamond', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const path = this.getPath(cfg);
|
const path = this.getPath(cfg);
|
||||||
const styles = { path, ...style };
|
const styles = { path, ...style };
|
||||||
return styles;
|
return styles;
|
||||||
|
@ -60,21 +60,13 @@ Shape.registerNode('ellipse', {
|
|||||||
labelPosition: 'center',
|
labelPosition: 'center',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, icon: defaultIcon } = this.options;
|
const { icon: defaultIcon } = this.options;
|
||||||
const { style: customStyle, icon: customIcon } = customOptions;
|
const { icon: customIcon } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
||||||
const size = this.getSize(cfg);
|
|
||||||
|
|
||||||
const rx = size[0] / 2;
|
|
||||||
const ry = size[1] / 2;
|
|
||||||
|
|
||||||
const keyShape = group.addShape('ellipse', {
|
const keyShape = group.addShape('ellipse', {
|
||||||
attrs: {
|
attrs: style
|
||||||
...style,
|
|
||||||
rx,
|
|
||||||
ry
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { width, height, show } = icon;
|
const { width, height, show } = icon;
|
||||||
@ -173,7 +165,11 @@ Shape.registerNode('ellipse', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const size = this.getSize(cfg);
|
const size = this.getSize(cfg);
|
||||||
const rx = size[0] / 2;
|
const rx = size[0] / 2;
|
||||||
const ry = size[1] / 2;
|
const ry = size[1] / 2;
|
||||||
|
@ -86,21 +86,15 @@ Shape.registerNode('modelRect', {
|
|||||||
shapeType: 'modelRect',
|
shapeType: 'modelRect',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, preRect: defaultPreRect } = this.options;
|
const { preRect: defaultPreRect } = this.options;
|
||||||
const { style: customStyle, preRect: customPreRect } = customOptions;
|
const { preRect: customPreRect } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const size = this.getSize(cfg);
|
const size = this.getSize(cfg);
|
||||||
const width = size[0];
|
const width = size[0];
|
||||||
const height = size[1];
|
const height = size[1];
|
||||||
|
|
||||||
const keyShape = group.addShape('rect', {
|
const keyShape = group.addShape('rect', {
|
||||||
attrs: {
|
attrs: style
|
||||||
...style,
|
|
||||||
x: -width / 2,
|
|
||||||
y: -height / 2,
|
|
||||||
width,
|
|
||||||
height
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const preRect = deepMix({}, defaultPreRect, customPreRect, cfg.preRect);
|
const preRect = deepMix({}, defaultPreRect, customPreRect, cfg.preRect);
|
||||||
@ -314,7 +308,11 @@ Shape.registerNode('modelRect', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const size = this.getSize(cfg);
|
const size = this.getSize(cfg);
|
||||||
const width = size[0];
|
const width = size[0];
|
||||||
const height = size[1];
|
const height = size[1];
|
||||||
|
@ -48,22 +48,10 @@ Shape.registerNode('rect', {
|
|||||||
},
|
},
|
||||||
shapeType: 'rect',
|
shapeType: 'rect',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const style = this.getShapeStyle(cfg);
|
||||||
const { style: defaultStyle } = this.options;
|
|
||||||
const { style: customStyle } = customOptions;
|
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
|
||||||
const size = this.getSize(cfg);
|
|
||||||
const width = size[0];
|
|
||||||
const height = size[1];
|
|
||||||
|
|
||||||
const keyShape = group.addShape('rect', {
|
const keyShape = group.addShape('rect', {
|
||||||
attrs: {
|
attrs: style,
|
||||||
...style,
|
|
||||||
x: -width / 2,
|
|
||||||
y: -height / 2,
|
|
||||||
width,
|
|
||||||
height
|
|
||||||
},
|
|
||||||
className: 'rect-keyShape'
|
className: 'rect-keyShape'
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -148,7 +136,11 @@ Shape.registerNode('rect', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const size = this.getSize(cfg);
|
const size = this.getSize(cfg);
|
||||||
const width = size[0];
|
const width = size[0];
|
||||||
const height = size[1];
|
const height = size[1];
|
||||||
|
@ -57,17 +57,13 @@ Shape.registerNode('star', {
|
|||||||
labelPosition: 'center',
|
labelPosition: 'center',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, icon: defaultIcon } = this.options;
|
const { icon: defaultIcon } = this.options;
|
||||||
const { style: customStyle, icon: customIcon } = customOptions;
|
const { icon: customIcon } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
||||||
|
|
||||||
const path = this.getPath(cfg);
|
|
||||||
const keyShape = group.addShape('path', {
|
const keyShape = group.addShape('path', {
|
||||||
attrs: {
|
attrs: style
|
||||||
path,
|
|
||||||
...style
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { width: w, height: h, show } = icon;
|
const { width: w, height: h, show } = icon;
|
||||||
@ -232,7 +228,11 @@ Shape.registerNode('star', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const path = this.getPath(cfg);
|
const path = this.getPath(cfg);
|
||||||
const styles = { path, ...style };
|
const styles = { path, ...style };
|
||||||
return styles;
|
return styles;
|
||||||
|
@ -58,18 +58,15 @@ Shape.registerNode('triangle', {
|
|||||||
labelPosition: 'bottom',
|
labelPosition: 'bottom',
|
||||||
drawShape(cfg, group) {
|
drawShape(cfg, group) {
|
||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle, icon: defaultIcon, direction: defaultDirection } = this.options;
|
const { icon: defaultIcon, direction: defaultDirection } = this.options;
|
||||||
const { style: customStyle, icon: customIcon, direction: customDirection } = customOptions;
|
const { icon: customIcon, direction: customDirection } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const style = this.getShapeStyle(cfg);
|
||||||
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
const icon = deepMix({}, defaultIcon, customIcon, cfg.icon);
|
||||||
|
|
||||||
const direction = cfg.direction || customDirection || defaultDirection;
|
const direction = cfg.direction || customDirection || defaultDirection;
|
||||||
const path = this.getPath(cfg);
|
|
||||||
const keyShape = group.addShape('path', {
|
const keyShape = group.addShape('path', {
|
||||||
attrs: {
|
attrs: style
|
||||||
path,
|
|
||||||
...style
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { width: w, height: h, show, offset } = icon;
|
const { width: w, height: h, show, offset } = icon;
|
||||||
@ -275,7 +272,11 @@ Shape.registerNode('triangle', {
|
|||||||
const customOptions = this.getCustomConfig(cfg) || {};
|
const customOptions = this.getCustomConfig(cfg) || {};
|
||||||
const { style: defaultStyle } = this.options;
|
const { style: defaultStyle } = this.options;
|
||||||
const { style: customStyle } = customOptions;
|
const { style: customStyle } = customOptions;
|
||||||
const style = deepMix({}, defaultStyle, customStyle, cfg.style);
|
const strokeStyle = {
|
||||||
|
stroke: cfg.color
|
||||||
|
};
|
||||||
|
// 如果设置了color,则覆盖默认的stroke属性
|
||||||
|
const style = deepMix({}, defaultStyle, customStyle, strokeStyle, cfg.style);
|
||||||
const path = this.getPath(cfg);
|
const path = this.getPath(cfg);
|
||||||
const styles = { path, ...style };
|
const styles = { path, ...style };
|
||||||
return styles;
|
return styles;
|
||||||
|
Loading…
Reference in New Issue
Block a user