Use a column of a dataset within title in chart

Hey all,

I would like to use a column (e.g. ‘Material_Name’) to be displayed within the title of my chart.
I know the filter or variable assignment e.g:

"config": {
    "title": {
      "text": "",
       "$text": {
        "type": "string",
        "value": "Forecast of ID {{filters.fi_material_id.identifier.values.0}}  as a function of time"
       }
    },

But is there a possibility to create something like:

"config": {
    "title": {
      "text": "",
       "$text": {
        "type": "string",
        "value": "Forecast of ID {{filters.fi_material_id.identifier.values.0}} {{Material_Name}} as a function of time"
       }
    },

Last option would be to create hidden filters I guess?!
Thanks in advance

This (title | Highcharts JS API Reference) indicates to me that highcharts does not offer a basic config to get the series name to the title, but programmatically it might be possible according to this here javascript - How to pass highchart series to highchart title? - Stack Overflow
So a custom component might be able to cover this demand.
In Apps I at least do not know a build in way currently to do it, if you can not manage to setup your variables accordingly if even possible.