Scatter Chart
Key Features
[
{ "x": 10, "y": 20 },
{ "x": 15, "y": 25 },
{ "x": 20, "y": 30 }
]let xValues = query1.data.x;
let yValues = query1.data.y;
let result = [];
for (let i = 0; i < xValues.length; i++) {
result.push({ x: xValues[i], y: yValues[i] });
}
return result;Component Playground
Component Auto-Docs
Last updated
Was this helpful?