1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009 |
- /*=========================================================================================
- File Name: chart-apex.js
- Description: Apexchart Examples
- ----------------------------------------------------------------------------------------
- Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
- Author: PIXINVENT
- Author URL: http://www.themeforest.net/user/pixinvent
- ==========================================================================================*/
- $(document).ready(function () {
- var $primary = '#7367F0',
- $success = '#28C76F',
- $danger = '#EA5455',
- $warning = '#FF9F43',
- $info = '#00cfe8',
- $label_color_light = '#dae1e7';
- var themeColors = [$primary, $success, $danger, $warning, $info];
- // RTL Support
- var yaxis_opposite = false;
- if($('html').data('textdirection') == 'rtl'){
- yaxis_opposite = true;
- }
- // Line Chart
- // ----------------------------------
- var lineChartOptions = {
- chart: {
- height: 350,
- type: 'line',
- zoom: {
- enabled: false
- }
- },
- colors: themeColors,
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'straight'
- },
- series: [{
- name: "Desktops",
- data: [10, 41, 35, 51, 49, 62, 69, 91, 148],
- }],
- title: {
- text: 'Product Trends by Month',
- align: 'left'
- },
- grid: {
- row: {
- colors: ['#f3f3f3', 'transparent'], // takes an array which will be repeated on columns
- opacity: 0.5
- },
- },
- xaxis: {
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'],
- },
- yaxis: {
- tickAmount: 5,
- opposite: yaxis_opposite
- }
- }
- var lineChart = new ApexCharts(
- document.querySelector("#line-chart"),
- lineChartOptions
- );
- lineChart.render();
- // Line Area Chart
- // ----------------------------------
- var lineAreaOptions = {
- chart: {
- height: 350,
- type: 'area',
- },
- colors: themeColors,
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth'
- },
- series: [{
- name: 'series1',
- data: [31, 40, 28, 51, 42, 109, 100]
- }, {
- name: 'series2',
- data: [11, 32, 45, 32, 34, 52, 41]
- }],
- legend: {
- offsetY: -10
- },
- xaxis: {
- type: 'datetime',
- categories: ["2019-09-18T00:00:00", "2019-09-18T01:00:00", "2019-09-18T02:00:00",
- "2019-09-18T03:00:00", "2019-09-18T04:00:00", "2019-09-18T05:00:00",
- "2019-09-18T06:00:00"
- ],
- },
- yaxis: {
- opposite: yaxis_opposite
- },
- tooltip: {
- x: {
- format: 'dd/MM/yy HH:mm'
- },
- }
- }
- var lineAreaChart = new ApexCharts(
- document.querySelector("#line-area-chart"),
- lineAreaOptions
- );
- lineAreaChart.render();
- // Column Chart
- // ----------------------------------
- var columnChartOptions = {
- chart: {
- height: 350,
- type: 'bar',
- },
- colors: themeColors,
- plotOptions: {
- bar: {
- horizontal: false,
- endingShape: 'rounded',
- columnWidth: '55%',
- },
- },
- dataLabels: {
- enabled: false
- },
- stroke: {
- show: true,
- width: 2,
- colors: ['transparent']
- },
- 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]
- }],
- legend: {
- offsetY: -10
- },
- xaxis: {
- categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'],
- },
- yaxis: {
- title: {
- text: '$ (thousands)'
- },
- opposite: yaxis_opposite
- },
- fill: {
- opacity: 1
- },
- tooltip: {
- y: {
- formatter: function (val) {
- return "$ " + val + " thousands"
- }
- }
- }
- }
- var columnChart = new ApexCharts(
- document.querySelector("#column-chart"),
- columnChartOptions
- );
- columnChart.render();
- // Bar Chart
- // ----------------------------------
- var barChartOptions = {
- chart: {
- height: 350,
- type: 'bar',
- },
- colors: themeColors,
- plotOptions: {
- bar: {
- horizontal: true,
- }
- },
- dataLabels: {
- enabled: false
- },
- series: [{
- data: [400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]
- }],
- xaxis: {
- categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany'],
- tickAmount: 5
- },
- yaxis: {
- opposite: yaxis_opposite
- }
- }
- var barChart = new ApexCharts(
- document.querySelector("#bar-chart"),
- barChartOptions
- );
- barChart.render();
- // Mixed Chart
- // -----------------------------
- var mixedChartOptions = {
- chart: {
- height: 350,
- type: 'line',
- stacked: false,
- },
- colors: themeColors,
- stroke: {
- width: [0, 2, 5],
- curve: 'smooth'
- },
- plotOptions: {
- bar: {
- columnWidth: '50%'
- }
- },
- // colors: ['#3A5794', '#A5C351', '#E14A84'],
- series: [{
- name: 'TEAM A',
- type: 'column',
- data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]
- }, {
- name: 'TEAM B',
- type: 'area',
- data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]
- }, {
- name: 'TEAM C',
- type: 'line',
- data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]
- }],
- fill: {
- opacity: [0.85, 0.25, 1],
- gradient: {
- inverseColors: false,
- shade: 'light',
- type: "vertical",
- opacityFrom: 0.85,
- opacityTo: 0.55,
- stops: [0, 100, 100, 100]
- }
- },
- labels: ['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003'],
- markers: {
- size: 0
- },
- legend: {
- offsetY: -10
- },
- xaxis: {
- type: 'datetime'
- },
- yaxis: {
- min: 0,
- tickAmount: 5,
- title: {
- text: 'Points'
- },
- opposite: yaxis_opposite
- },
- tooltip: {
- shared: true,
- intersect: false,
- y: {
- formatter: function (y) {
- if (typeof y !== "undefined") {
- return y.toFixed(0) + " views";
- }
- return y;
- }
- }
- }
- }
- var mixedChart = new ApexCharts(
- document.querySelector("#mixed-chart"),
- mixedChartOptions
- );
- mixedChart.render();
- // Candlestick Chart
- // -----------------------------
- var candleStickOptions = {
- chart: {
- height: 350,
- type: 'candlestick',
- },
- colors: themeColors,
- 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]
- },
- ]
- }],
- xaxis: {
- type: 'datetime'
- },
- yaxis: {
- tickAmount: 5,
- tooltip: {
- enabled: true
- },
- opposite: yaxis_opposite
- }
- }
- var candleStickChart = new ApexCharts(
- document.querySelector("#candlestick-chart"),
- candleStickOptions
- );
- candleStickChart.render();
- // 3D Bubble Chart
- // -----------------------------
- function generateDataBubbleChart(baseval, count, yrange) {
- var i = 0;
- var seriesBubbleChart = [];
- 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;
- seriesBubbleChart.push([baseval, y, z]);
- baseval += 86400000;
- i++;
- }
- return seriesBubbleChart;
- }
- var bubbleChartOptions = {
- chart: {
- height: 350,
- type: 'bubble',
- },
- colors: themeColors,
- dataLabels: {
- enabled: false
- },
- legend: {
- offsetY: -10
- },
- series: [{
- name: 'Product1',
- data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
- min: 10,
- max: 60
- })
- },
- {
- name: 'Product2',
- data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
- min: 10,
- max: 60
- })
- },
- {
- name: 'Product3',
- data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
- min: 10,
- max: 60
- })
- },
- {
- name: 'Product4',
- data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
- min: 10,
- max: 60
- })
- }
- ],
- fill: {
- type: 'gradient',
- },
- xaxis: {
- tickAmount: 12,
- type: 'datetime',
- labels: {
- rotate: 0,
- }
- },
- yaxis: {
- max: 70,
- tickAmount: 5,
- opposite: yaxis_opposite
- },
- theme: {
- palette: 'palette2'
- }
- }
- var bubbleChart = new ApexCharts(
- document.querySelector("#bubble-chart"),
- bubbleChartOptions
- );
- bubbleChart.render();
- // Scatter Chart
- // -----------------------------
- var scatterChartOptions = {
- chart: {
- height: 350,
- type: 'scatter',
- zoom: {
- enabled: true,
- type: 'xy'
- },
- },
- colors: themeColors,
- 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: [
- [6.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]
- ]
- }],
- legend: {
- offsetY: -10
- },
- xaxis: {
- tickAmount: 10
- },
- yaxis: {
- tickAmount: 7,
- opposite: yaxis_opposite
- }
- }
- var scatterChart = new ApexCharts(
- document.querySelector("#scatter-chart"),
- scatterChartOptions
- );
- scatterChart.render();
- // Pie Chart
- // -----------------------------
- var pieChartOptions = {
- chart: {
- type: 'pie',
- height: 350
- },
- colors: themeColors,
- labels: ['Team A', 'Team B', 'Team C', 'Team D'],
- series: [44, 55, 13, 43],
- legend: {
- itemMargin: {
- horizontal: 2
- },
- },
- responsive: [{
- breakpoint: 480,
- options: {
- chart: {
- width: 350
- },
- legend: {
- position: 'bottom'
- }
- }
- }]
- }
- var pieChart = new ApexCharts(
- document.querySelector("#pie-chart"),
- pieChartOptions
- );
- pieChart.render();
- // Donut Chart
- // -----------------------------
- var donutChartOptions = {
- chart: {
- type: 'donut',
- height: 350
- },
- colors: themeColors,
- series: [44, 55, 41, 17],
- legend: {
- itemMargin: {
- horizontal: 2
- },
- },
- responsive: [{
- breakpoint: 480,
- options: {
- chart: {
- width: 350
- },
- legend: {
- position: 'bottom'
- }
- }
- }]
- }
- var donutChart = new ApexCharts(
- document.querySelector("#donut-chart"),
- donutChartOptions
- );
- donutChart.render();
- // Radial Bar Chart
- // -----------------------------
- var radialBarChartOptions = {
- chart: {
- height: 350,
- type: 'radialBar',
- },
- colors: themeColors,
- plotOptions: {
- radialBar: {
- dataLabels: {
- name: {
- fontSize: '22px',
- },
- value: {
- fontSize: '16px',
- },
- total: {
- show: true,
- label: 'Total',
- // color: $label_color,
- formatter: function (w) {
- // By default this function returns the average of all series. The below is just an example to show the use of custom formatter function
- return 249
- }
- }
- }
- }
- },
- series: [44, 55, 67, 83],
- labels: ['Apples', 'Oranges', 'Bananas', 'Berries'],
- }
- var radialBarChart = new ApexCharts(
- document.querySelector("#radial-bar-chart"),
- radialBarChartOptions
- );
- radialBarChart.render();
- // Radar Chart
- // -----------------------------
- var radarChartOptions = {
- chart: {
- height: 350,
- type: 'radar',
- },
- colors: themeColors,
- series: [{
- name: 'Series 1',
- data: [80, 50, 30, 40, 100, 20],
- }],
- labels: ['January', 'February', 'March', 'April', 'May', 'June'],
- dataLabels: {
- style: {
- color: $label_color_light
- }
- }
- }
- var radarChart = new ApexCharts(document.querySelector("#radar-chart"), radarChartOptions);
- radarChart.render();
- // Heat Map Chart
- // -----------------------------
- function generateData(count, yrange) {
- var i = 0,
- series = [];
- while (i < count) {
- var x = 'w' + (i + 1).toString(),
- y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
- series.push({
- x: x,
- y: y
- });
- i++;
- }
- return series;
- }
- var heatChartOptions = {
- chart: {
- height: 350,
- type: 'heatmap',
- },
- dataLabels: {
- enabled: false
- },
- colors: [$primary],
- series: [{
- name: 'Metric1',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric2',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric3',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric4',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric5',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric6',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric7',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric8',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- },
- {
- name: 'Metric9',
- data: generateData(18, {
- min: 0,
- max: 90
- })
- }
- ],
- yaxis: {
- opposite: yaxis_opposite
- }
- }
- var heatChart = new ApexCharts(
- document.querySelector("#heat-map-chart"),
- heatChartOptions);
- heatChart.render();
- });
|