0

我正在使用 Highcharts 构建自定义区域样条图。该系列有 15000 个动画。如何在图表加载/动画时显示和隐藏每个 Y 值?就像在图表的最后加载点上方动画的工具提示一样。

部分代码如下:

tooltip: {
enabled:true,
shared:true,
formatter: function() {
    var number;

    $.each(this.points, function(i, smth) {
        number = "Value: " + smth.y;
    });
    return number;
}
},
plotOptions: {
areaspline: {
    lineWidth: 1,
    marker: {
        enabled: false
    },
    shadow: false,
    states: {
        hover: {
            lineWidth: 1
        }
    },
    treshold: null
}
},
series: [
{
    animation: {
        duration: 15000
    },
    fillColor: '#fff',
    color: '#fff',
    fillOpacity: 1,
    pointStart: 0,
    data: [51, 35, 41, 56, 22, 20, 34, 21, 58, 22, 20, 32, 41, 55, 22]
}
]
4

0 回答 0