Apexcharts.js page header description goes here...
Basic Example
Apexcharts.js is a modern javaScript charting library to build interactive charts and visualizations with simple API. Please read the official documentation for the full list of options.
LINE CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexLineChart"></div>
<!-- script -->
<script>
var apexLineChartOptions = {
chart: {
height: 350,
type: 'line',
shadow: {
enabled: true,
color: COLOR_GRAY_500,
top: 18,
left: 7,
blur: 10,
opacity: 1
},
toolbar: {
show: false
}
},
title: {
text: 'Average High & Low Temperature',
align: 'center'
},
colors: [COLOR_BLUE, COLOR_TEAL],
dataLabels: {
enabled: true,
},
stroke: {
curve: 'smooth',
width: 3
},
series: [{
name: 'High - 2020',
data: [28, 29, 33, 36, 32, 32, 33]
}, {
name: 'Low - 2020',
data: [12, 11, 14, 18, 17, 13, 13]
}],
grid: {
borderColor: COLOR_GRAY_200,
row: {
colors: [COLOR_GRAY_200, 'transparent'],
opacity: 0.5
},
},
markers: {
size: 4
},
xaxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
yaxis: {
min: 5,
max: 40
},
legend: {
show: true,
position: 'top',
offsetY: -10,
horizontalAlign: 'right',
floating: true
}
};
var apexLineChart = new ApexCharts(
document.querySelector('#apexLineChart'),
apexLineChartOptions
);
apexLineChart.render();
</script>
COLUMN CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexColumnChart"></div>
<!-- script -->
<script>
var apexColumnChartOptions = {
chart: {
height: 350,
type: 'bar'
},
title: {
text: 'Profit & Margin Chart',
align: 'center'
},
plotOptions: {
bar: {
horizontal: false,
columnWidth: '55%',
endingShape: 'rounded'
},
},
dataLabels: {
enabled: false
},
stroke: {
show: true,
width: 2,
colors: ['transparent']
},
colors: [COLOR_GRAY_900, COLOR_INDIGO, COLOR_GRAY_300],
series: [{
name: 'Net Profit',
data: [44, 55, 57, 56, 61, 58, 63, 60, 66]
}, {
name: 'Revenue',
data: [76, 85, 101, 98, 87, 105, 91, 114, 94]
}, {
name: 'Free Cash Flow',
data: [35, 41, 36, 26, 45, 48, 52, 53, 41]
}],
xaxis: {
categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'],
axisBorder: {
show: true,
color: COLOR_GRAY_200,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_200,
height: 6,
offsetX: 0,
offsetY: 0
}
},
yaxis: {
title: {
text: '$ (thousands)'
}
},
fill: {
opacity: 1
},
tooltip: {
y: {
formatter: function (val) {
return "$ " + val + " thousands"
}
}
}
};
var apexColumnChart = new ApexCharts(
document.querySelector('#apexColumnChart'),
apexColumnChartOptions
);
apexColumnChart.render();
</script>
AREA CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexAreaChart"></div>
<!-- script -->
<script>
var apexAreaChartOptions = {
chart: {
height: 350,
type: 'area',
},
dataLabels: {
enabled: false
},
stroke: {
curve: 'smooth',
width: 3
},
colors: [COLOR_PINK, COLOR_GRAY_900],
series: [{
name: 'series1',
data: [31, 40, 28, 51, 42, 109, 100]
}, {
name: 'series2',
data: [11, 32, 45, 32, 34, 52, 41]
}],
xaxis: {
type: 'datetime',
categories: ['2019-09-19T00:00:00', '2019-09-19T01:30:00', '2019-09-19T02:30:00', '2019-09-19T03:30:00', '2019-09-19T04:30:00', '2019-09-19T05:30:00', '2019-09-19T06:30:00'],
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
grid: {
borderColor: COLOR_GRAY_200
},
tooltip: {
x: {
format: 'dd/MM/yy HH:mm'
},
}
};
var apexAreaChart = new ApexCharts(
document.querySelector('#apexAreaChart'),
apexAreaChartOptions
);
apexAreaChart.render();
</script>
BAR CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexBarChart"></div>
<!-- script -->
<script>
var apexBarChartOptions = {
chart: {
height: 350,
type: 'bar',
},
plotOptions: {
bar: {
horizontal: true,
dataLabels: {
position: 'top',
},
}
},
dataLabels: {
enabled: true,
offsetX: -6,
style: {
fontSize: '12px',
colors: [COLOR_WHITE]
}
},
colors: [COLOR_ORANGE, COLOR_GRAY_900],
stroke: {
show: true,
width: 1,
colors: [COLOR_WHITE]
},
series: [{
data: [44, 55, 41, 64, 22, 43, 21]
},{
data: [53, 32, 33, 52, 13, 44, 32]
}],
grid: {
borderColor: COLOR_GRAY_200
},
xaxis: {
categories: [2013, 2014, 2015, 2016, 2017, 2018, 2019],
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
}
};
var apexBarChart = new ApexCharts(
document.querySelector('#apexBarChart'),
apexBarChartOptions
);
apexBarChart.render();
</script>
MIXED CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexMixedChart"></div>
<!-- script -->
<script>
var apexMixedChartOptions = {
chart: {
height: 350,
type: 'line',
stacked: false
},
dataLabels: {
enabled: false
},
series: [{
name: 'Income',
type: 'column',
data: [1.4, 2, 2.5, 1.5, 2.5, 2.8, 3.8, 4.6]
}, {
name: 'Cashflow',
type: 'column',
data: [1.1, 3, 3.1, 4, 4.1, 4.9, 6.5, 8.5]
}, {
name: 'Revenue',
type: 'line',
data: [20, 29, 37, 36, 44, 45, 50, 58]
}],
stroke: {
width: [0, 0, 3]
},
colors: [COLOR_BLUE, COLOR_TEAL, COLOR_ORANGE],
title: {
text: 'XYZ - Stock Analysis (2012 - 2020)',
align: 'left',
offsetX: 110
},
xaxis: {
categories: [2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020],
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
yaxis: [{
axisTicks: {
show: true,
},
axisBorder: {
show: true,
color: COLOR_BLUE
},
labels: {
style: {
color: COLOR_BLUE
}
},
title: {
text: "Income (thousand crores)",
style: {
color: COLOR_BLUE
}
},
tooltip: {
enabled: true
}
},{
seriesName: 'Income',
opposite: true,
axisTicks: {
show: true,
},
axisBorder: {
show: true,
color: COLOR_TEAL
},
labels: {
style: {
color: COLOR_TEAL
}
},
title: {
text: "Operating Cashflow (thousand crores)",
style: {
color: COLOR_TEAL
}
},
}, {
seriesName: 'Revenue',
opposite: true,
axisTicks: {
show: true,
},
axisBorder: {
show: true,
color: COLOR_ORANGE
},
labels: {
style: {
color: COLOR_ORANGE
},
},
title: {
text: "Revenue (thousand crores)",
style: {
color: COLOR_ORANGE
}
}
}],
tooltip: {
fixed: {
enabled: true,
position: 'topLeft', // topRight, topLeft, bottomRight, bottomLeft
offsetY: 30,
offsetX: 60
},
},
grid: {
borderColor: COLOR_GRAY_200
},
legend: {
horizontalAlign: 'left',
offsetX: 40
}
};
var apexMixedChart = new ApexCharts(
document.querySelector('#apexMixedChart'),
apexMixedChartOptions
);
apexMixedChart.render();
</script>
CANDLESTICK CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexCandlestickChart"></div>
<!-- script -->
<script>
var apexCandlestickChartOptions = {
chart: {
height: 350,
type: 'candlestick'
},
series: [{
data: [{
x: new Date(1538778600000),
y: [6629.81, 6650.5, 6623.04, 6633.33]
},
{
x: new Date(1538780400000),
y: [6632.01, 6643.59, 6620, 6630.11]
},
{
x: new Date(1538782200000),
y: [6630.71, 6648.95, 6623.34, 6635.65]
},
{
x: new Date(1538784000000),
y: [6635.65, 6651, 6629.67, 6638.24]
},
{
x: new Date(1538785800000),
y: [6638.24, 6640, 6620, 6624.47]
},
{
x: new Date(1538787600000),
y: [6624.53, 6636.03, 6621.68, 6624.31]
},
{
x: new Date(1538789400000),
y: [6624.61, 6632.2, 6617, 6626.02]
},
{
x: new Date(1538791200000),
y: [6627, 6627.62, 6584.22, 6603.02]
},
{
x: new Date(1538793000000),
y: [6605, 6608.03, 6598.95, 6604.01]
},
{
x: new Date(1538794800000),
y: [6604.5, 6614.4, 6602.26, 6608.02]
},
{
x: new Date(1538796600000),
y: [6608.02, 6610.68, 6601.99, 6608.91]
},
{
x: new Date(1538798400000),
y: [6608.91, 6618.99, 6608.01, 6612]
},
{
x: new Date(1538800200000),
y: [6612, 6615.13, 6605.09, 6612]
},
{
x: new Date(1538802000000),
y: [6612, 6624.12, 6608.43, 6622.95]
},
{
x: new Date(1538803800000),
y: [6623.91, 6623.91, 6615, 6615.67]
},
{
x: new Date(1538805600000),
y: [6618.69, 6618.74, 6610, 6610.4]
},
{
x: new Date(1538807400000),
y: [6611, 6622.78, 6610.4, 6614.9]
},
{
x: new Date(1538809200000),
y: [6614.9, 6626.2, 6613.33, 6623.45]
},
{
x: new Date(1538811000000),
y: [6623.48, 6627, 6618.38, 6620.35]
},
{
x: new Date(1538812800000),
y: [6619.43, 6620.35, 6610.05, 6615.53]
},
{
x: new Date(1538814600000),
y: [6615.53, 6617.93, 6610, 6615.19]
},
{
x: new Date(1538816400000),
y: [6615.19, 6621.6, 6608.2, 6620]
},
{
x: new Date(1538818200000),
y: [6619.54, 6625.17, 6614.15, 6620]
},
{
x: new Date(1538820000000),
y: [6620.33, 6634.15, 6617.24, 6624.61]
},
{
x: new Date(1538821800000),
y: [6625.95, 6626, 6611.66, 6617.58]
},
{
x: new Date(1538823600000),
y: [6619, 6625.97, 6595.27, 6598.86]
},
{
x: new Date(1538825400000),
y: [6598.86, 6598.88, 6570, 6587.16]
},
{
x: new Date(1538827200000),
y: [6588.86, 6600, 6580, 6593.4]
},
{
x: new Date(1538829000000),
y: [6593.99, 6598.89, 6585, 6587.81]
},
{
x: new Date(1538830800000),
y: [6587.81, 6592.73, 6567.14, 6578]
},
{
x: new Date(1538832600000),
y: [6578.35, 6581.72, 6567.39, 6579]
},
{
x: new Date(1538834400000),
y: [6579.38, 6580.92, 6566.77, 6575.96]
},
{
x: new Date(1538836200000),
y: [6575.96, 6589, 6571.77, 6588.92]
},
{
x: new Date(1538838000000),
y: [6588.92, 6594, 6577.55, 6589.22]
},
{
x: new Date(1538839800000),
y: [6589.3, 6598.89, 6589.1, 6596.08]
},
{
x: new Date(1538841600000),
y: [6597.5, 6600, 6588.39, 6596.25]
},
{
x: new Date(1538843400000),
y: [6598.03, 6600, 6588.73, 6595.97]
},
{
x: new Date(1538845200000),
y: [6595.97, 6602.01, 6588.17, 6602]
},
{
x: new Date(1538847000000),
y: [6602, 6607, 6596.51, 6599.95]
},
{
x: new Date(1538848800000),
y: [6600.63, 6601.21, 6590.39, 6591.02]
},
{
x: new Date(1538850600000),
y: [6591.02, 6603.08, 6591, 6591]
},
{
x: new Date(1538852400000),
y: [6591, 6601.32, 6585, 6592]
},
{
x: new Date(1538854200000),
y: [6593.13, 6596.01, 6590, 6593.34]
},
{
x: new Date(1538856000000),
y: [6593.34, 6604.76, 6582.63, 6593.86]
},
{
x: new Date(1538857800000),
y: [6593.86, 6604.28, 6586.57, 6600.01]
},
{
x: new Date(1538859600000),
y: [6601.81, 6603.21, 6592.78, 6596.25]
},
{
x: new Date(1538861400000),
y: [6596.25, 6604.2, 6590, 6602.99]
},
{
x: new Date(1538863200000),
y: [6602.99, 6606, 6584.99, 6587.81]
},
{
x: new Date(1538865000000),
y: [6587.81, 6595, 6583.27, 6591.96]
},
{
x: new Date(1538866800000),
y: [6591.97, 6596.07, 6585, 6588.39]
},
{
x: new Date(1538868600000),
y: [6587.6, 6598.21, 6587.6, 6594.27]
},
{
x: new Date(1538870400000),
y: [6596.44, 6601, 6590, 6596.55]
},
{
x: new Date(1538872200000),
y: [6598.91, 6605, 6596.61, 6600.02]
},
{
x: new Date(1538874000000),
y: [6600.55, 6605, 6589.14, 6593.01]
},
{
x: new Date(1538875800000),
y: [6593.15, 6605, 6592, 6603.06]
},
{
x: new Date(1538877600000),
y: [6603.07, 6604.5, 6599.09, 6603.89]
},
{
x: new Date(1538879400000),
y: [6604.44, 6604.44, 6600, 6603.5]
},
{
x: new Date(1538881200000),
y: [6603.5, 6603.99, 6597.5, 6603.86]
},
{
x: new Date(1538883000000),
y: [6603.85, 6605, 6600, 6604.07]
},
{
x: new Date(1538884800000),
y: [6604.98, 6606, 6604.07, 6606]
}]
}],
title: {
text: 'CandleStick Chart',
align: 'left'
},
xaxis: {
type: 'datetime',
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
grid: {
borderColor: COLOR_GRAY_200
},
yaxis: {
tooltip: {
enabled: true
}
}
};
var apexCandlestickChart = new ApexCharts(
document.querySelector('#apexCandlestickChart'),
apexCandlestickChartOptions
);
apexCandlestickChart.render();
</script>
BUBBLE CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexBubbleChart"></div>
<!-- script -->
<script>
function generateBubbleChartData(baseval, count, yrange) {
var i = 0;
var series = [];
while (i < count) {
var x = Math.floor(Math.random() * (750 - 1 + 1)) + 1;;
var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
var z = Math.floor(Math.random() * (75 - 15 + 1)) + 15;
series.push([x, y, z]);
baseval += 86400000;
i++;
}
return series;
}
var apexBubbleChartOptions = {
chart: {
height: 350,
type: 'bubble',
},
dataLabels: {
enabled: false
},
colors: [COLOR_BLUE, COLOR_ORANGE, COLOR_TEAL, COLOR_PINK],
series: [{
name: 'Bubble1',
data: generateBubbleChartData(new Date('11 Feb 2017 GMT').getTime(), 20, {
min: 10,
max: 60
})
},
{
name: 'Bubble2',
data: generateBubbleChartData(new Date('11 Feb 2017 GMT').getTime(), 20, {
min: 10,
max: 60
})
},
{
name: 'Bubble3',
data: generateBubbleChartData(new Date('11 Feb 2017 GMT').getTime(), 20, {
min: 10,
max: 60
})
},
{
name: 'Bubble4',
data: generateBubbleChartData(new Date('11 Feb 2017 GMT').getTime(), 20, {
min: 10,
max: 60
})
}
],
fill: {
opacity: 0.8
},
title: {
text: 'Simple Bubble Chart'
},
xaxis: {
tickAmount: 12,
type: 'category',
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
grid: {
borderColor: COLOR_GRAY_200
},
yaxis: {
max: 70
}
}
var apexBubbleChart = new ApexCharts(
document.querySelector('#apexBubbleChart'),
apexBubbleChartOptions
);
apexBubbleChart.render();
</script>
SCATTER CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexScatterChart"></div>
<!-- script -->
<script>
var apexScatterChartOptions = {
chart: {
height: 350,
type: 'scatter',
zoom: {
enabled: true,
type: 'xy'
}
},
colors: [COLOR_BLUE, COLOR_ORANGE, COLOR_TEAL],
series: [{
name: "SAMPLE A",
data: [[16.4, 5.4],[21.7, 2],[25.4, 3],[19, 2],[10.9, 1],[13.6, 3.2],[10.9, 7.4],[10.9, 0],[10.9, 8.2],[16.4, 0],[16.4, 1.8],[13.6, 0.3],[13.6, 0],[29.9, 0],[27.1, 2.3],[16.4, 0],[13.6, 3.7],[10.9, 5.2],[16.4, 6.5],[10.9, 0],[24.5, 7.1],[10.9, 0],[8.1, 4.7],[19, 0],[21.7, 1.8],[27.1, 0],[24.5, 0],[27.1, 0],[29.9, 1.5],[27.1, 0.8],[22.1, 2]]
}, {
name: "SAMPLE B",
data: [[36.4, 13.4],[1.7, 11],[5.4, 8],[9, 17],[1.9, 4],[3.6, 12.2],[1.9, 14.4],[1.9, 9],[1.9, 13.2],[1.4, 7],[6.4, 8.8],[3.6, 4.3],[1.6, 10],[9.9, 2],[7.1, 15],[1.4, 0],[3.6, 13.7],[1.9, 15.2],[6.4, 16.5],[0.9, 10],[4.5, 17.1],[10.9, 10],[0.1, 14.7],[9, 10],[12.7, 11.8],[2.1, 10],[2.5, 10],[27.1, 10],[2.9, 11.5],[7.1, 10.8],[2.1, 12]]
}, {
name: "SAMPLE C",
data: [[21.7, 3],[23.6, 3.5],[24.6, 3],[29.9, 3],[21.7, 20],[23, 2],[10.9, 3],[28, 4],[27.1, 0.3],[16.4, 4],[13.6, 0],[19, 5],[22.4, 3],[24.5, 3],[32.6, 3],[27.1, 4],[29.6, 6],[31.6, 8],[21.6, 5],[20.9, 4],[22.4, 0],[32.6, 10.3],[29.7, 20.8],[24.5, 0.8],[21.4, 0],[21.7, 6.9],[28.6, 7.7],[15.4, 0],[18.1, 0],[33.4, 0],[16.4, 0]]
}],
grid: {
borderColor: COLOR_GRAY_200
},
xaxis: {
tickAmount: 10,
labels: {
formatter: function(val) {
return parseFloat(val).toFixed(1)
}
},
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
},
yaxis: {
tickAmount: 7
}
}
var apexScatterChart = new ApexCharts(
document.querySelector('#apexScatterChart'),
apexScatterChartOptions
);
apexScatterChart.render();
</script>
HEATMAP CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexHeatmapChart"></div>
<!-- script -->
<script>
function generateHeatmapData(count, yrange) {
var i = 0;
var series = [];
while (i < count) {
var x = 'w' + (i + 1).toString();
var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
series.push({
x: x,
y: y
});
i++;
}
return series;
}
var apexHeatmapChartOptions = {
chart: {
height: 350,
type: 'heatmap',
},
dataLabels: {
enabled: false
},
colors: [COLOR_BLUE],
series: [{
name: 'Metric1',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric2',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric3',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric4',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric5',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric6',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric7',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric8',
data: generateHeatmapData(18, { min: 0, max: 90 })
}, {
name: 'Metric9',
data: generateHeatmapData(18, { min: 0, max: 90 })
}
],
title: {
text: 'HeatMap Chart (Single color)'
},
grid: {
borderColor: COLOR_GRAY_200
},
xaxis: {
axisBorder: {
show: true,
color: COLOR_GRAY_300,
height: 1,
width: '100%',
offsetX: 0,
offsetY: -1
},
axisTicks: {
show: true,
borderType: 'solid',
color: COLOR_GRAY_300,
height: 6,
offsetX: 0,
offsetY: 0
}
}
}
var apexHeatmapChart = new ApexCharts(
document.querySelector('#apexHeatmapChart'),
apexHeatmapChartOptions
);
apexHeatmapChart.render();
</script>
PIE CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexPieChart"></div>
<!-- script -->
<script>
var apexPieChartOptions = {
chart: {
height: 365,
type: 'pie',
},
dataLabels: {
dropShadow: {
enabled: false,
top: 1,
left: 1,
blur: 1,
opacity: 0.45
}
},
colors: [COLOR_PINK, COLOR_ORANGE, COLOR_BLUE, COLOR_TEAL, COLOR_INDIGO],
labels: ['Team A', 'Team B', 'Team C', 'Team D', 'Team E'],
series: [44, 55, 13, 43, 22],
title: {
text: 'HeatMap Chart (Single color)'
}
};
var apexPieChart = new ApexCharts(
document.querySelector('#apexPieChart'),
apexPieChartOptions
);
apexPieChart.render();
</script>
RADIAL BAR CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexRadialBarChart"></div>
<!-- script -->
<script>
var apexRadialBarChartOptions = {
chart: {
height: 350,
type: 'radialBar',
},
plotOptions: {
radialBar: {
offsetY: -10,
startAngle: 0,
endAngle: 270,
hollow: {
margin: 5,
size: '30%',
background: 'transparent',
image: undefined,
},
dataLabels: {
name: {
show: false,
},
value: {
show: false,
}
}
}
},
colors: [COLOR_AQUA, COLOR_BLUE, COLOR_INDIGO, COLOR_GRAY_900],
series: [76, 67, 61, 90],
labels: ['Vimeo', 'Messenger', 'Facebook', 'LinkedIn'],
legend: {
show: true,
floating: true,
position: 'left',
offsetX: 140,
offsetY: 15,
labels: {
useSeriesColors: true,
},
markers: {
size: 0
},
formatter: function(seriesName, opts) {
return seriesName + ": " + opts.w.globals.series[opts.seriesIndex]
},
itemMargin: {
horizontal: 1,
}
}
}
var apexRadialBarChart = new ApexCharts(
document.querySelector('#apexRadialBarChart'),
apexRadialBarChartOptions
);
apexRadialBarChart.render();
</script>
RADAR CHART
<!-- required js -->
<script src="assets/plugins/apexcharts/dist/apexcharts.min.js"/></script>
<!-- html -->
<div id="apexRadarChart"></div>
<!-- script -->
<script>
var apexRadarChartOptions = {
chart: {
height: 320,
type: 'radar',
},
series: [{
name: 'Series 1',
data: [20, 100, 40, 30, 50, 80, 33],
}],
labels: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
plotOptions: {
radar: {
size: 140,
polygons: {
strokeColors: COLOR_GRAY_200,
strokeWidth: 1,
connectorColors: COLOR_GRAY_200,
fill: {
colors: [hexToRgba(COLOR_GRAY_300, .25), COLOR_WHITE]
}
}
}
},
title: {
text: 'Radar with Polygon Fill'
},
colors: [COLOR_BLUE],
markers: {
size: 4,
colors: [COLOR_WHITE],
strokeColor: COLOR_BLUE,
strokeWidth: 2,
},
tooltip: {
y: {
formatter: function(val) {
return val
}
}
},
yaxis: {
tickAmount: 7,
labels: {
formatter: function(val, i) {
if (i % 2 === 0) {
return val
} else {
return ''
}
}
}
}
}
var apexRadarChart = new ApexCharts(
document.querySelector('#apexRadarChart'),
apexRadarChartOptions
);
apexRadarChart.render();
</script>