Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
controlType: 'ordinalColors',
group: 'Style',
},
{
key: 'colorBy',
type: 'string | Function',
help: 'Property used to determine node color.',
description: `
Property to use to determine node color.
If a function is provided, it will receive
the current node data and must return
a string or number which will be passed
to the color generator.
`,
required: false,
defaultValue: defaults.colorBy,
controlType: 'choices',
group: 'Style',
controlOptions: {
choices: [
{
label: 'depth',
value: 'depth',
},
{
label: 'name',
value: 'name',
},
],
},
},
{