3rd-Party Plugins

ApexCharts

ApexCharts is a modern charting library that helps developers to create beautiful and interactive visualizations for web pages. It is an open-source project licensed under MIT and is free to use in commercial applications.

Installation

ApexCharts is installed via NPM as a third-party dependency by referring to package.json . During the Theme Installation process, it is compiled by the Build Tools into the /dist/assets/vendors/apexcharts directory.

Require Assets

To use ApexCharts in your pages, you need to include the following dependency assets in the order shown.
				
					<!DOCTYPE html>
<html>
 <head>
  <!--Vendor styles -->
  <link href="/dist/assets/vendors/apexcharts/apexcharts.css" rel="stylesheet"/>
  <!--Core styles-->
  <link href="/dist/assets/css/styles.css" rel="stylesheet"/>
 </head>
 <body>
  <h1>
   Hello world!
  </h1>
  <!--Core bundle script-->
  <script src="/dist/assets/js/core.bundle.js">
  </script>
  <!--Vendor script -->
  <script src="/dist/assets/vendors/apexcharts/apexcharts.min.js">
  </script>
  <!--Custom script -->
  <script src="/dist/assets/pages/plugins/apexcharts/area-chart.js">
  </script>
 </body>
</html>

				
			

Area Chart

An example of an interactive area chart featuring a preview tooltip that displays detailed information when hovering over specific data points.

Area Chart

Pie Chart

An example of an interactive pie chart to express data and information in terms of percentages and ratios.

Pie Chart

Bar Chart

An example of a vertical bar chart using ApexCharts with Metronic styling. Bars use the primary color and support tooltips on hover.

Bar Chart

Line Chart

An example of a line chart with smooth curve and markers. Uses Metronic primary color and supports tooltips on hover.

Line Chart

Donut Chart

An example of a donut chart with a center label showing the total. Uses Metronic color variables and supports a legend at the bottom.

Donut Chart

Horizontal Bar Chart

An example of a horizontal bar chart for comparing categories. Uses Metronic primary color and supports tooltips on hover.

Horizontal Bar Chart