Widget props not rendered?

In a custom widget, I have parameters defined, these props work for the items. So my widget mostly works, except, I have a issue with setting a title for a oh-chart-title. It renders the props.title always literally, as below in the screenshot. Im using OH 3.3.0

I shortened my widget to the relevant part and it still shows the issue

uid: widget_6dde9a78c4
tags: []
props:
  parameters:
    - label: Title
      name: title
      required: true
      type: TEXT
  parameterGroups: []
timestamp: Oct 5, 2022, 10:50:25 AM
component: oh-chart
config:
  label: widget_klima_indoors
slots:
  title:
    - component: oh-chart-title
      config:
        show: true
        text: = props.title

Likely, you can’t use dynamic text here. See link below:

Edit: Also, the Add-on Marketplace category is for posting complete add-ons that others can share and download, not for questions. I’ve moved your topic to a more appropriate category.

Thanks and okay. Well knowing there is a wrapper explains it. I’ll move the title in a separate item above.