0

大家好,我有这张图表 http://i.prntscr.com/U1ho1cqRTVq-ifoMquWKAw.png 我需要得到结果 http://i.prntscr.com/Lj_PqmNWSxiIBJmK3tS44Q.png

我认为在十字准线中解决此任务<但我一周前开始使用 highcharts。你能帮我或提供一些有助于解决问题的链接吗?因为我一整天都在重构很多代码,但没有找到任务的解决方案。

我的设置

chart: {
    type: 'areaspline',
    backgroundColor: 'transparent',
    height: '500px',
    spacingRight: -1,
    spacingLeft: -1
},
title: {
    text: ''
},
subtitle: {
    text: ''
},
xAxis: {
    categories: [],
    x: {
        min: 0,
        max: 0
    },
    allowDecimalse: false,
    gridLineWidth: 1,
    gridLineColor: '#393546',
    labels: {
        y: -20,
    },
    tickWidth: 0,
    lineColor: "#fff",
    zIndex: 0,
     **crosshair:** {
        color: 'rgba(73,168,222,0.5)',
        zIndex: 0
    }
},
yAxis: {
    gridLineWidth: 0,
    minorGridLineWidth: 0,
    visible: false,
    title: {
        text: ''
    },
    labels: {
        enabled: false
    }
},

plotOptions: {
    areaspline: {
        marker: {
            enabled: false,
            states: {
                hover: {
                    symbol: 'circle',
                    fillColor: '#fff',
                    lineColor: '#2196f3',
                    lineWidth: 2,
                    radius: 7,
                    enabled: true,
                }
            },
        },
    }
},
series: [
    {
        data: [
        ],
        name: 'V/IRTUS',
        showInLegend: false,
        color: '#2196f3',
    }
],
credits: {
    enabled: false
}

};

数据 [] 我也从 api 和类别中获得,以及 min max 选项

4

0 回答 0