FR

Bar and column charts

Use a bar or column chart to compare specific categories or values.

Hovering over the chart displays more precise data. The chart units will not be included here as they are reflected on the chart’s axes.

Best practices

  • Works best for small numbers of data series.
    For a larger number of comparisons, consider using multiple charts.
  • Use stacked columns to illustrate the parts that make up a group.
  • Use a guide to group data items or separate charts for each data group.

Example: Bar chart with categories


                    [amcharts
id="serial4"
data-type="text"
data-group="DESIGN_BARCHARTS_C1"
data-charttitle="Title"
data-subtitle="Subtitle"
data-bottomAxisTitle="Axis title"
data-transpose=true

data-hideLegend=true 
data-xAxisType="number"
data-yAxisType="text"
]
                

Example: Column chart with categories


                    [amcharts
  id="serial4"
  data-type="text"
  data-group="DESIGN_BARCHARTS_C2"
  data-chartTitle="Title"
  data-subTitle="Subtitle"
  data-leftAxisTitle="Left axis title"
  data-transpose="true"
  data-hideLegend="true"
  data-xAxisType="text"
]
                

Example: Two series column chart


                    [amcharts
  id="serial4"
  data-type="text"
  data-group="DESIGN_BARCHARTS_C3"
  data-chartTitle="Title"
  data-subTitle="Subtitle"
  data-leftAxisTitle="Left  axis title"
  data-xAxisType="text"
  data-transpose="true"
]
                

Example: Stacked column chart


                    [amcharts 
  id="serial4"
  data-type="text"
  data-group="DESIGN_BARCHARTS_C4"
  data-chartTitle="Title"
  data-subTitle="Subtitle"
  data-leftAxisStackType="regular"
  data-leftAxisTitle="Left axis title"	
  data-xAxisType="text"
]