add_chart
Insert a chart into an Excel file by specifying data range, chart type, and anchor cell. Supports bar, line, pie, and scatter charts for clear data visualization.
Instructions
插入图表(差异化能力:官方 xlsx skill 无图表指导,竞品 knorq 明确不支持图表)。
参数:
data_range:数据区域,如 "B2:B10"
chart_type:bar / line / pie / scatter(默认 bar)
categories_range:分类轴区域,如 "A2:A10"
title:图表标题
anchor_cell:图表左上角锚定位置(默认 E2)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sheet | No | ||
| title | No | ||
| file_path | Yes | ||
| chart_type | No | bar | |
| data_range | Yes | ||
| anchor_cell | No | E2 | |
| categories_range | No |