Update the data label names with column names in highchart funnel

I am trying to create highcharts to create a funnel chart with multiple metrics. I need guidance on how to update the word Slice with the column header of the metrics. Using the below mentioned code, I was able to create the funnel chart and was able to change the slice name as well.

{
  "chart": {
        "type": "funnel"
    },
   "title": {
        "text": "Application funnel"
    },
  "plotOptions": {
        "series": {
            "dataLabels": {
                "enabled": true,
                "format": "<b>{series.name}</b> ({point.x:,.0f})",
                "softConnector": true
            },
            "center": ["40%", "50%"],
            "neckWidth": "30%",
            "neckHeight": "25%",
            "width": "80%"
        }
    },
    "series":[{ "type": "funnel",
      "name": "text1",
    "data":[
	        [ "getColumn", 1],
            [ "getColumn", 2],
            ["getColumn", 3]
	]
    }
    ]
  } 

Can someone please confirm how each slice can be labeled with different words or table headers?

Hello @aroraric !

Can you try updating the column names in the data section of Series:

“series”:[{ “type”: “funnel”,
“name”: “text1”,
“data”:[
[ “getColumn”, 1],
[ “getColumn”, 2],
[“getColumn”, 3]
]
}
]

Where you see “getColumn” add your field name.

This should create what you are looking for:

{
  "plotOptions": {
    "series": {
      "dataLabels": {
        "enabled": true,
        "format": "<b>{point.name}</b> ({point.y:,.0f})",
        "softConnector": true
      },
      "center": ["40%", "50%"],
      "neckWidth": "30%",
      "neckHeight": "25%",
      "width": "80%"
    }
  },
  "series": [
    {
      "type": "funnel",
      "data": ["getColumn", 0, 1]
    }
  ]
}

Outcome:

Hi , this does not resolve my issue. I have data in 3 columns. But the data label to be displayed is not in any column. It is the column name.

Here is my code:
“series”: [
{
“name”: “Students”,
“data”: [
[ “getColumn”, 1],
[ “getColumn”, 2],
[ “getColumn”, 3]
]
}
]

See attached pic where the data label is “slice” for all components of the funnel. I want it to say different words based on what column is being represented.