DeveloperBreeze

Javascript Charts Development Tutorials, Guides & Insights

Unlock 1+ expert-curated javascript charts tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your javascript charts skills on DeveloperBreeze.

Getting Started with ApexCharts

Tutorial August 21, 2024

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();