1

我在 Highcharts 中有很多图表。现在我想指出其中一些图表中的一些有趣的发展。例如,这可以使用Intro.JS来完成。

如何在我的 Highcharts 中实现这个库或类似的东西?此处为 Highcharts 图表示例

    chart = new Highcharts.Chart({
        exporting: {
        enabled: false
        },
        chart: {
            renderTo: 'container',
            type: 'spline',
            marginRight: 20
        },
        title: {
            text: 'Kortetermijnraming CPB'
        },
        subtitle: {
            text: 'Werkloosheid stijgt tot 6%'
        },
        xAxis: {
    max: Date.UTC(2000,1,0),
            type: 'datetime',
            dateTimeLabelFormats: { // don't display the dummy year
                month: '%Y',
                year: '%Y'
            }
        },
        yAxis: {
    min: 0,
            title: {
                text: 'Werkloosheid (%)'
            },

                         plotLines: [{
                value: 0,
                width: 2,
                color: '#000000',
                zIndex: 5
            },                {
                label: {
        text: 'Werkloosheid',
        x: 0,
        align: 'right'
        },
        value: 6,
                width: 0.5,
                color: '#ffffff',
                zIndex: 1
            }]
        },
        tooltip: {
            formatter: function() {
                    return '<b>'+ this.series.name +'<br/>'+
                    Highcharts.dateFormat('%Y', this.x) +':</b> '+ this.y +'%';
            }
        },

         plotOptions: {
     series: {
            animation: {
                duration: 5000
            }
        },
        spline: {
            lineWidth: 3,
            states: {
                hover: {
                    lineWidth: 4
                }
            },
            marker: {
                enabled: false,
                states: {
                    hover: {
                        enabled: true,
                        symbol: 'circle',
                        radius: 4,
                        lineWidth: 1
                    }
                }
            }
        }
    },
               legend: {
    enabled: false
    });
});
4

0 回答 0