```json
{
"summary": "双Y轴图表展示隐患整改率(折线)与隐患数量(柱状)",
"widget": {
"type": "chart",
"title": {
"text": "隐患数据统计",
"subtext": "整改率(折线) vs 隐患数量(柱状)"
},
"tooltip": {
"trigger": "axis",
"axisPointer": {
"type": "cross"
}
},
"legend": {
"data": ["整改率", "隐患数量"]
},
"xAxis": {
"type": "category",
"data": ["1月", "2月", "3月", "4月", "5月", "6月"]
},
"yAxis": [
{
"type": "value",
"name": "整改率",
"min": 0,
"max": 100,
"axisLabel": {
"formatter": "{value}%"
}
},
{
"type": "value",
"name": "隐患数量"
}
],
"series": [
{
"name": "整改率",
"type": "line",
"yAxisIndex": 0,
"data": [85, 78, 92, 88, 95, 90]
},
{
"name": "隐患数量",
"type": "bar",
"yAxisIndex": 1,
"data": [120, 150, 110, 135, 100, 115]
}
]
},
"next": ["添加数据标记点","设置平滑曲线","调整柱宽比例","增加网格线","双轴联动缩放"]
}
```
角色
assistant
content
total_tokens
859