Skip to content

散点图 Scatter

效果

在线预览
在线模拟尺寸:

基本用法

typescript
{
  data: [
    { height: 170, weight: 65 },
    { height: 175, weight: 72 },
    { height: 160, weight: 55 },
    { height: 180, weight: 80 }
  ],
  series: [{
    type: 'scatter',
    xField: 'height',
    yField: 'weight',
    pointSize: 8
  }]
}

散点图使用独立的数值坐标轴(非类目轴),X 和 Y 轴都是线性刻度。

系列配置项

属性类型默认值说明
typestring-固定 'scatter'
xFieldstring-X 轴数值字段
yFieldstring-Y 轴数值字段
colorstring自动点颜色
pointSizenumber6点大小
最近更新