score:0

you should omit data.labels and instead, provide the data for both datasets in point format. this is an array of objects having an x and y property each.

data: [
  { x: 10, y: 20 }, 
  { x: 15, y: 10 },
  ... 
]

Related Query

More Query from same tag