11 lines
434 B
TypeScript
11 lines
434 B
TypeScript
|
|
export default {
|
||
|
|
__init__: ['customRenderer'],
|
||
|
|
customRenderer: [
|
||
|
|
'type',
|
||
|
|
function (defaultRenderer: any) {
|
||
|
|
defaultRenderer.CONNECTION_STYLE = { fill: 'none', strokeWidth: 5, stroke: 'CanvasText' };
|
||
|
|
defaultRenderer.SHAPE_STYLE = { fill: 'Canvas', stroke: 'CanvasText', strokeWidth: 2 };
|
||
|
|
defaultRenderer.FRAME_STYLE = { fill: 'none', stroke: 'CanvasText', strokeDasharray: 4, strokeWidth: 2 };
|
||
|
|
}
|
||
|
|
]
|
||
|
|
};
|