TOOL API

generate_bar_chart

generate_bar_chart

data1 credits

Call information

Tool slug
chart-gen.generate_bar_chart
Provider
Chart Tools
Average response
0 ms
Calls in 7 days
0

Input parameters

axisXTitle

Set the x-axis title of chart.

axisYTitle

Set the y-axis title of chart.

datarequired

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' }].

height

Set the height of the chart, default is 600px.

group

Whether grouping is enabled. When enabled, bar charts require a 'group' field in the data. When `group` is true, `stack` should be false.

stack

Whether stacking is enabled. When enabled, bar charts require a 'group' field in the data. When `stack` is true, `group` should be false.

theme

Set the theme for the chart, optional, default is 'default'.

title

Set the title of the chart.

width

Set the width of the chart, default is 800px.

outputType

The 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.