Charts JS - Global Properties

Hello everyone! I’m currently working on creating a dashboard using the ChartJS plugin. I’m exploring the advanced mode and I’m curious if there’s a way to access global properties. Specifically, I’m looking to change the font weight or the font family for the entire chart. In the library is as simple as adding the Chart.defaults.font like this:

Chart.defaults.font.weight = 700;
const config = {
  type: 'line',
  data: data,
};

.

But I can’t find a way to implement it in weweb. Thanks in advance

Have you seen Joyce’s video on Chart.js for Weweb?