mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
86f835cfc8
* develop: chore(docs): Update live editor links update user story link feat(gantt): Add option 'tickInterval' for custom tick interval Convert attr to classed Convert attr to style
1.4 KiB
1.4 KiB
Warning
THIS IS AN AUTOGENERATED FILE. DO NOT EDIT.
Please edit the corresponding file in /packages/mermaid/src/docs/config/setup/modules/defaultConfig.md.
Module: defaultConfig
Variables
configKeys
• Const
configKeys: string
[]
Defined in
default
• Const
default: Partial
<MermaidConfig
>
Configuration methods in Mermaid version 8.6.0 have been updated, to learn more[click here].
What follows are config instructions for older versions
These are the default options which can be overridden with the initialization call like so:
Example 1:
mermaid.initialize({ flowchart: { htmlLabels: false } });
Example 2:
<script>
const config = {
startOnLoad: true,
flowchart: { useMaxWidth: true, htmlLabels: true, curve: 'cardinal' },
securityLevel: 'loose',
};
mermaid.initialize(config);
</script>
A summary of all options and their defaults is found here. A description of each option follows below.