Bar Charts > Groupedconst ApexChart = () => { const [state, setState] = React.useState({ series: [{ data: [44, 55, 41, 64, 22, 43, 21] }, { data: [53, 32, 33, 52, 13, 44, 32] }], options: { chart: { type: 'bar', height: 430 }, plotOptions: { bar: { ...
How to change xaxis labels colors? I'm using this configuration const options = { chart: { height: 200, type: 'bar', }, plotOptions: { bar: { horizontal: true } }, dataLabels: { enabled: false, }, stroke: { show: false, width: 1, colors:...
(https://www.fusioncharts.com/charts/column-bar-charts/grouped-column-chart-with-multiple-series?framework=javascript) Contributor junedchhipa commented Jan 21, 2020 Yes, take a look at this example https://apexcharts.com/javascript-chart-demos/column-charts/basic/ junedchhipa closed this as com...