How to use the @nivo/sankey.SankeyDefaultProps.linkOpacity function in @nivo/sankey

To help you get started, we’ve selected a few @nivo/sankey examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github plouc / nivo / website / src / data / components / sankey / props.js View on Github external
description: `
            how to compute node border color,
            [see dedicated documentation](self:/guides/colors).
        `,
        help: 'Method to compute node border color.',
        type: 'string | object | Function',
        required: false,
        defaultValue: defaults.nodeBorderColor,
        controlType: 'inheritedColor',
        group: 'Nodes',
    },
    {
        key: 'linkOpacity',
        help: 'Link opacity (0~1).',
        required: false,
        defaultValue: defaults.linkOpacity,
        type: 'number',
        controlType: 'opacity',
        group: 'Links',
    },
    {
        key: 'linkHoverOpacity',
        flavors: ['svg'],
        help: 'Link opacity on hover(0~1).',
        required: false,
        defaultValue: defaults.linkHoverOpacity,
        type: 'number',
        controlType: 'opacity',
        group: 'Links',
    },
    {
        key: 'linkContract',