Remove outline/shadow on data labels

Anyone know how to remove the white outline/shadow from these labels?
image

I’ve tried the below, but no luck so far:

    "dataLabels": {
      "shadow": false,
      "borderColor": "black"
    },

@ishapiro do we expose this in the GUI for advanced options properties on charts?

You can use the style parameter to customize the data labels.

"plotOptions": {
  "column": {
    "dataLabels": {
      "enabled": true,
      "style": {
        "color": "contrast",
        "fontSize": "15px",
        "fontWeight": "normal",
        "textOutline": "0.5px contrast"
      }
    }
  }
}
1 Like

or you could remove the textOutline with the class
tspan.highcharts-text-outline{
stroke-width: 0px !important;
}

Thanks all for the suggestions - this helped a lot.