Chart plugin error

Hello! I’m trying to create the chart below, but I’m getting an error. Could someone help me fix it?
I’m following the example from the website: Line Chart - Charts Plugin.

Obsidian: 1.8.4

```chart
type: line
labels: [Início,Janeiro]
series:
    - title: Ruth
    data: [0,636]
    - title: Maykon
    data: [0,541]
    - title: João Vitor
    data: [0,651] 
    - title: Sara Raquel
    data: [0,532]
    - title: Ana Beatriz
    data: [0,622]
    - title: Sara Max.
    data: [0,711]
    - title: Jumara
    data: [0,90]
    - title: Gustavo
    data: [0,403]

ERROR:

YAMLParseError: All mapping items must start at the same column at line 5, column 1:

- title: Ruth
data: [0,636]

^


You might also want to look for further Errors in the Console: Press CTRL + SHIFT + I to open it.

That data seems to be misaligned, try something like this:

type: line
labels: [Início,Janeiro]
series:
  - title: Ruth
    data: [0,636]
  - title: Maykon
    data: [0,541]
  - title: João Vitor
    data: [0,651] 
  - title: Sara Raquel
    data: [0,532]
  - title: Ana Beatriz
    data: [0,622]
  - title: Sara Max.
    data: [0,711]
  - title: Jumara
    data: [0,90]
  - title: Gustavo
    data: [0,403]

Two spaces before the dash line which starts a new entry, and four spaces before other parts of the current entry.