You can customize the colors of the chart using the colors
option.
var options = {
chart: {
type: 'line'
},
series: [{
name: 'Sales',
data: [10, 20, 15, 30, 25, 40, 35]
}],
xaxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul']
},
colors: ['#FF5733'] // Custom line color
}
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();