[OH3] oh-chart legend text color

Just fiddling around a bit with the new oh-chart possibilities and the using them as a widget instead of a page.

So far, it works good,

I just try to change the text color of the legend. According the eChart documentation this should be possible.

https://echarts.apache.org/en/option.html#legend.textStyle.color

I tried to insert this into the legend definition, but without any effect.

        legend:
          - component: oh-chart-legend
            config:
              show: true
              orient: horizontal
              bottom: "8"
              textStyle.color: '#FFFFFF'

Is this implemented in OH3, or has anyone an idea how to do it right?

This post was too quick. Found the solution, and changed the config like this:

legend:
          - component: oh-chart-legend
            config:
              show: true
              orient: horizontal
              bottom: "8"
              textStyle:
                color: "#FFFFFF"