mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-26 10:49:38 +02:00
#5237 add support for diagram title
This commit is contained in:
@@ -18,6 +18,7 @@ import {
|
||||
DIVIDER_TYPE,
|
||||
CSS_DIAGRAM,
|
||||
} from './stateCommon.js';
|
||||
import utils from '../../utils.js';
|
||||
|
||||
// Configuration
|
||||
const conf: Record<string, any> = {};
|
||||
@@ -86,8 +87,8 @@ export const draw = async function (text: string, id: string, _version: string,
|
||||
// performRender(data4Rendering);
|
||||
|
||||
data4Layout.type = diag.type;
|
||||
// data4Layout.layoutAlgorithm = 'dagre-wrapper';
|
||||
data4Layout.layoutAlgorithm = 'elk';
|
||||
data4Layout.layoutAlgorithm = 'dagre-wrapper';
|
||||
//data4Layout.layoutAlgorithm = 'elk';
|
||||
data4Layout.skin = 'roughjs';
|
||||
data4Layout.direction = DIR;
|
||||
data4Layout.nodeSpacing = conf.nodeSpacing || 50;
|
||||
@@ -97,6 +98,12 @@ export const draw = async function (text: string, id: string, _version: string,
|
||||
console.log('REF1:', data4Layout);
|
||||
await render(data4Layout, svg, element);
|
||||
const padding = 8;
|
||||
utils.insertTitle(
|
||||
element,
|
||||
'statediagramTitleText',
|
||||
conf.titleTopMargin,
|
||||
diag.db.getDiagramTitle()
|
||||
);
|
||||
setupViewPortForSVG(svg, padding, CSS_DIAGRAM, conf.useMaxWidth);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user