Adapter
Bar Chart
Line Chart (Dynamic)
Line Chart (Multi-series)
Pie Chart
Area Chart (Spline)
Area Chart (Step, Stacked)
Heat Map Chart

Bar Chart

LiveCharts.build(%{
  id: "bar_chart_simple",
  type: :bar,
  options: %{
    colors: ["#23700C"],
    xaxis: %{
      categories: [2011, 2012, 2013, 2014, 2015,
       2016, 2017, 2018, 2019, 2020]
    },
    dataLabels: %{enabled: false}
  },
  adapter: LiveCharts.Adapter.ApexCharts,
  series: [
    %{
      data: [28, 94, 37, 29, 19, 88, 47, 10, 29,
       47]
    }
  ]
})
For more details, see the documentation.