工具 API
generate_ bar_ chart
generate_bar_chart
调用信息
- 工具标识
- chart-gen.generate_bar_chart
- 服务提供方
- 图表生成工具
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
axisXTitleSet the x-axis title of chart.
axisYTitleSet the y-axis title of chart.
data必填Data for bar chart, such as, [{ category: 'Category A', value: 10 }, { category: 'Category B', value: 20 }] or [{ category: 'Category A', value: 10, group: 'Group A' }].
heightSet the height of the chart, default is 600px.
groupWhether grouping is enabled. When enabled, bar charts require a 'group' field in the data. When `group` is true, `stack` should be false.
stackWhether stacking is enabled. When enabled, bar charts require a 'group' field in the data. When `stack` is true, `group` should be false.
themeSet the theme for the chart, optional, default is 'default'.
titleSet the title of the chart.
widthSet the width of the chart, default is 800px.
outputTypeThe output type of the diagram. Can be 'png', 'svg' or 'option'. Default is 'png', 'png' will return the rendered PNG image, 'svg' will return the rendered SVG string, and 'option' will return the valid ECharts option.