Remove shadow/background glow on highcharts data label?

前端 未结 4 479
感动是毒
感动是毒 2021-02-05 06:04

If you check out my http://jsfiddle.net/WOUNDEDStevenJones/oe1vcmqj/1/, the red labels on the chart have a subtle white glow behind them (in at least Chrome and FF). How do I r

4条回答
  •  别跟我提以往
    2021-02-05 06:14

    worked for me...

    dataLabels: {
                    enabled: true,
                    color: 'white',
                    style: {
                        // textShadow: false 
                        textOutline: false
                    }
    

提交回复
热议问题