lavkach3
1var chart_bounce_rate = {2series: [3{4name: "Sales",5data: [20, 15, 30, 25, 10, 18, 20, 25, 10],6},7],8chart: {9fontFamily: "inherit",10height: 80,11type: "bar",12offsetX: -10,13toolbar: {14show: false,15},16sparkline: {17enabled: true,18},19},20colors: ["var(--bs-primary)"],21plotOptions: {22bar: {23horizontal: false,24columnWidth: "55%",25endingShape: "flat",26borderRadius: 4,27},28},29tooltip: {30theme: "dark",31followCursor: true,32},33};34var chart_line_basic = new ApexCharts(35document.querySelector("#sales"),36chart_bounce_rate
37);38chart_line_basic.render();