```json
{
"summary": "世界人口分布柱状图添加线性趋势线",
"widget": {
"type": "chart",
"title": {
"text": "世界人口分布",
"subtext": "数据来源:联合国2023年统计",
"left": "center"
},
"tooltip": {
"trigger": "axis",
"axisPointer": {
"type": "shadow"
}
},
"xAxis": {
"type": "category",
"data": ["亚洲", "非洲", "欧洲", "北美洲", "南美洲", "大洋洲"],
"axisLabel": {
"rotate": 0
}
},
"yAxis": {
"type": "value",
"name": "人口数量(亿)",
"nameLocation": "end"
},
"dataset": {
"source": [
["洲", "人口"],
["亚洲", 46.67],
["非洲", 13.89],
["欧洲", 7.46],
["北美洲", 6.04],
["南美洲", 4.34],
["大洋洲", 0.44]
]
},
"series": [
{
"type": "bar",
"name": "人口数量",
"itemStyle": {
"color": {
"type": "linear",
"x": 0,
"y": 0,
"x2": 0,
"y2": 1,
"colorStops": [
{"offset": 0, "color": "#5470c6"},
{"offset": 1, "color": "#8a2be2"}
]
}
},
"label": {
"show": true,
"position": "top",
"formatter": "{c}亿"
}
},
{
"type": "line",
"name": "趋势线",
"symbol": "none",
"smooth": true,
"lineStyle": {
"color": "#ff6b6b",
"width": 3,
"type": "dashed"
},
"data": [46.67, 13.89, 7.46, 6.04, 4.34, 0.44]
}
],
"grid": {
"left": "3%",
"right": "4%",
"bottom": "3%",
"containLabel": true
}
},
"next": ["设置阴影效果","启用缩放功能","添加数据标注","对比历年数据","调整趋势样式"]
}
```
角色
assistant
content
total_tokens
1930