Tested tool guide
Tested browser tools
Checked August 16, 2026
What Bar Chart Generator does, with a checked example
Enter category names with one or more numeric series, choose vertical or horizontal orientation, and pick whether series sit side by side per category (grouped) or stack on top of each other (stacked). The tool scales bars to the data, adds axis labels and a legend when more than one series is present, and renders a chart you can export as an image. The detail people miss: switching from grouped to stacked changes what the value axis measures - from the single largest value to the summed category total - so a scale that fit grouped bars can clip stacked ones.
Worked example
A concrete input and expected output from the current implementation.
Input
Category,Series A,Series B
Q1,120,80
Q2,90,150 (stacked mode)
->
Expected output
Two stacked bars: Q1 reaches a total height of 200 (Series A fills 0-120, Series B stacks 120-200); Q2 reaches a total height of 240 (Series A fills 0-90, Series B stacks 90-240). The value axis scales to at least 240, the larger of the two category totals.
In stacked mode each category's series values are summed in entry order from the baseline, so bar height is a running total (120+80=200, 90+150=240), and the axis follows the tallest stack rather than the largest single value (150).