Bar chart
A bar chart is a chart in which each category is represented by a horizontal rectangle, with the length of the rectangle proportional to the values being plotted. The horizontal axis shows data value, and the vertical axis displays the categories being compared.
More about: Bar chart - Other tutorials: Matplotlib D3
Basic bar chart
Bar chart with labels
Column chart
In a column chart, each category is represented by a vertical rectangle, with the height of the rectangle being proportional to the values being plotted.
More about: Column chart - Other tutorials: Matplotlib Plotly Python D3
Basic column chart
Column chart with labels
Grouped bar chart
Grouped bar charts are a type of colour-coded bar chart that is used to represent and compare different categories of two or more groups.
More about: Grouped bar chart - Other tutorials: Matplotlib D3
Basic grouped bar chart
Grouped bar chart with labels
Grouped column chart
Grouped column charts are a type of colour-coded column chart used to represent and compare different categories of two or more groups.
More about: Grouped column chart - Other tutorials: Matplotlib Plotly Python D3
Basic grouped column chart
Grouped column chart with labels
Stacked bar chart
Stacked bar charts stack horizontal bars that represent different groups one after another. The length of the stacked bar shows the combined value of the groups.
More about: Stacked bar chart - Other tutorials: Matplotlib D3
Basic stacked bar chart
Stacked bar chart with labels
Stacked column chart
The stacked column chart stacks vertical bars that represent different groups on top of each other. The height of the stacked bar shows the combined value of the groups.
More about: Stacked column chart - Other tutorials: Matplotlib D3