Remove shadow/background glow on highcharts data label?

前端 未结 4 481
感动是毒
感动是毒 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:29

    use text-shadow:none !important; for the tag tspan

    CSS

    tspan{
        text-decoration:none;
        text-shadow:none !important;
    }
    

    FIDDLE DEMO

提交回复
热议问题