Skip to content

面积图 Area

折线图的变体,线下方填充颜色区域。

效果

在线预览
在线模拟尺寸:

基本用法

typescript
{
  data: [
    { month: '1月', value: 23 },
    { month: '2月', value: 35 },
    { month: '3月', value: 18 }
  ],
  series: [{
    type: 'area',
    xField: 'month',
    yField: 'value',
    areaOpacity: 0.3    // 填充区域透明度 0~1
  }]
}

系列配置项

属性类型默认值说明
typestring-固定 'area'
xFieldstring-X 轴字段
yFieldstring-Y 轴字段
colorstring自动线条和填充颜色
smoothbooleanfalse是否平滑
showPointbooleantrue是否显示数据点
pointSizenumber6数据点大小
areaOpacitynumber0.3填充透明度
最近更新