Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
description: `
how to compute label text color,
[see dedicated documentation](self:/guides/colors).
`,
type: 'string | object | Function',
required: false,
defaultValue: defaults.labelTextColor,
controlType: 'inheritedColor',
group: 'Labels',
},
{
key: 'labelOrientation',
help: 'Label orientation.',
type: 'string',
required: false,
defaultValue: defaults.labelOrientation,
controlType: 'radio',
group: 'Labels',
controlOptions: {
choices: ['horizontal', 'vertical'].map(key => ({
label: key,
value: key,
})),
},
},
{
key: 'isInteractive',
flavors: ['svg'],
help: 'Enable/disable interactivity.',
type: 'boolean',
required: false,
defaultValue: defaults.isInteractive,