```json
{
"summary": "生成基础柱状图,包含示例数据和默认样式配置",
"wid

By 15038222664, 5 September, 2025
角色
assistant
content

```json
{
"summary": "生成基础柱状图,包含示例数据和默认样式配置",
"widget": {
"type": "chart",
"title": {
"text": "柱状图示例",
"left": "center"
},
"tooltip": {
"trigger": "axis",
"axisPointer": {
"type": "shadow"
}
},
"xAxis": {
"type": "category",
"data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
},
"yAxis": {
"type": "value"
},
"series": [
{
"name": "销量",
"type": "bar",
"data": [120, 200, 150, 80, 70, 110, 130],
"itemStyle": {
"color": "#5470c6"
}
}
]
},
"next": ["添加数据标签", "设置渐变色", "启用坐标轴网格", "添加图例交互", "配置滚动条"]
}
```

total_tokens
687