sankeyVisual.ts 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

S
sushuang 已提交
20
import VisualMapping from '../../visual/VisualMapping';
S
sushuang 已提交
21
import * as zrUtil from 'zrender/src/core/util';
P
pissang 已提交
22 23
import GlobalModel from '../../model/Global';
import SankeySeriesModel, { SankeyNodeItemOption } from './SankeySeries';
D
deqingli 已提交
24

P
pissang 已提交
25 26
export default function (ecModel: GlobalModel) {
    ecModel.eachSeriesByType('sankey', function (seriesModel: SankeySeriesModel) {
27 28
        const graph = seriesModel.getGraph();
        const nodes = graph.nodes;
29
        if (nodes.length) {
30 31
            let minValue = Infinity;
            let maxValue = -Infinity;
32
            zrUtil.each(nodes, function (node) {
33
                const nodeValue = node.getLayout().value;
34 35 36 37 38 39
                if (nodeValue < minValue) {
                    minValue = nodeValue;
                }
                if (nodeValue > maxValue) {
                    maxValue = nodeValue;
                }
D
deqingli 已提交
40
            });
S
sushuang 已提交
41

42
            zrUtil.each(nodes, function (node) {
43
                const mapping = new VisualMapping({
44 45 46 47 48
                    type: 'color',
                    mappingMethod: 'linear',
                    dataExtent: [minValue, maxValue],
                    visual: seriesModel.get('color')
                });
S
sushuang 已提交
49

50 51
                const mapValueToColor = mapping.mapValueToVisual(node.getLayout().value);
                const customColor = node.getModel<SankeyNodeItemOption>().get(['itemStyle', 'color']);
S
susiwen8 已提交
52 53 54 55 56 57 58 59
                if (customColor != null) {
                    node.setVisual('color', customColor);
                    node.setVisual('style', {fill: customColor});
                }
                else {
                    node.setVisual('color', mapValueToColor);
                    node.setVisual('style', {fill: mapValueToColor});
                }
60 61
            });
        }
S
sushuang 已提交
62 63
    });
}