Skip to content

折线图 Line

效果

在线预览
在线模拟尺寸:

基本折线

typescript
{
  data: [
    { month: '1月', value: 23 },
    { month: '2月', value: 35 },
    { month: '3月', value: 18 }
  ],
  series: [{ type: 'line', xField: 'month', yField: 'value' }]
}

多系列折线

typescript
{
  data: [
    { month: '1月', sales: 120, cost: 80 },
    { month: '2月', sales: 200, cost: 110 }
  ],
  series: [
    { type: 'line', xField: 'month', yField: 'sales', color: '#3b82f6' },
    { type: 'line', xField: 'month', yField: 'cost', color: '#f59e0b' }
  ]
}

平滑曲线

typescript
series: [{
  type: 'line',
  xField: 'month',
  yField: 'value',
  smooth: true,           // 启用平滑
  smoothStrength: 0.6     // 平滑强度 0.15~1,默认 0.6
}]

系列配置项

属性类型默认值说明
typestring-固定 'line'
xFieldstring-X 轴字段名
yFieldstring-Y 轴字段名
colorstring自动线条颜色
smoothbooleanfalse是否平滑曲线
smoothStrengthnumber0.6平滑强度
showPointbooleantrue是否显示数据点
lineWidthnumber3线条宽度
pointSizenumber6数据点大小
labelChartLabelOptions-数据标签配置
gradientstring[]-渐变色数组

数据标签

typescript
series: [{
  type: 'line',
  xField: 'month',
  yField: 'value',
  label: {
    show: true,
    fontSize: 10,
    color: '#6b7280'
  }
}]
最近更新