1

ナビゲーターの線の色を変更しました: color:'rgba(255, 255, 255, 0.00)' そして、線の色を変更しました:lineColor: 'red' それは私のチャートです

しかし、ナビゲーターの行の下の色を変更することはできません: ScreenShot

ナビゲーターのすべてのコード:

navigator: {
    maskFill: 'rgba(255, 255, 255, 0.45)',
    series: {
        type: 'areaspline',
        color: 'rgba(255, 255, 255, 0.00)',
        fillOpacity: 0.4,
        dataGrouping: {
            smoothed: false
        },
        lineWidth: 2,
        lineColor: 'red',
        marker: {
            enabled: false
        },
        shadow: true
    },
    yAxis: {
        reversed: true
    }
}
4

1 に答える 1

6

これを試してみてください:

navigator: {
    maskFill: 'rgba(255, 255, 255, 0.45)',
    series: {
        type: 'areaspline',
        color: 'rgba(255, 255, 255, 0.00)',
        fillOpacity: 0.4,
        dataGrouping: {
            smoothed: false
        },
        lineWidth: 2,
        lineColor: 'red',
        fillColor : {
            linearGradient : {  
                x1 : 0, 
                y1 : 0, 
                x2 : 0, 
                y2 : 1 
            }, 
            stops : [[0, '#FF8000'], [1, '#FFFF00']] 
        },
        marker: {
            enabled: false
        },
        shadow: true
    },
    yAxis: {
        reversed: true
    }
}
于 2013-04-03T10:21:17.413 に答える