config
config
is an object that contains the following properties.
Propertiesβ
useCSSSelectorsβ
When set to true
the cell selectors could be defined as CSS selectors. If not, only JSON Markup selectors are taken
into account. The default is false
.
classNamePrefixβ
The class name prefix config is for advanced use only. Be aware that if you change the prefix, the JointJS CSS will no
longer function properly. The default is joint-
.
defaultThemeβ
The default theme used in JointJS. The default is 'default'
.
doubleTapIntervalβ
The maximum delay required for two consecutive touchend events to be interpreted as a double-tap. The default is 300
.
Typesβ
configβ
namespace config {
var useCSSSelectors: boolean;
var classNamePrefix: string;
var defaultTheme: string;
var doubleTapInterval: number;
}