Adrian Cerbaro

Results 4 comments of Adrian Cerbaro

Hi @remithomas. Sorry for the late reply! What version of `oidc-provider` and `nest-oidc-provider` are you using? This warning message means that you parsed the body before the request reached the...

Hi @teodorachiosa! The `textDirection` option sets the canvas' [`direction`](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/direction#examples) property. As shown in the example below, it's working as expected: "Hello, World!" becomes "!Hello, World" in RTL mode. https://codepen.io/adrianbrs/pen/MYYmQOM ![Image](https://github.com/user-attachments/assets/ef728593-5d9e-4f90-a3a3-4a158e1a22a3)

Hi @doekenorg! You can use the `id` property (or the `x` property as the default for `xAxisKey` if not configured) as the index to the label in the `labels` array,...

Hi @n1c! You can just enable `usePointStyle` in the legend label options to get a circular shape, like this: https://codepen.io/adrianbrs/pen/jEEqEwW ```js const legend = { labels: { usePointStyle: true },...