Chartjs-How do I use ChartJS with a background color in the space between two line charts?

0👍

Did you know abut hicgcharts

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'area'
        },
        title: {
            text: 'Temp'
        },
        xAxis: {
            categories: ['1pm', '2pm', '3pm', '4pm', '5pm']
        },
        credits: {
            enabled: false
        },
        colors: [ '#910000', '#00FFFF'],
        series: [{
            name: 'Max Temp',
            data: [5, 3, 4, 7, 2]
        }, {
            name: 'Min Temp',
            data: [2, 2, 3, 2, 1]
        }]
    });
});
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

0👍

Taken from another answer but closer to what you wanted. (color only in middle).
So basically, in ChartJS you need to overlay 2 filled line charts, and make the bottom one white. (sadly it overwrites the gridlines)

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'area'
        },
        title: {
            text: 'Temp'
        },
        xAxis: {
            categories: ['1pm', '2pm', '3pm', '4pm', '5pm']
        },
        credits: {
            enabled: false
        },
        colors: [ '#910000', '#FFFFFF'],
        series: [{
            name: 'Max Temp',
            data: [5, 3, 4, 7, 2]
        }, {
            name: 'Min Temp',
            data: [2, 2, 3, 2, 1]
        }]
    });
});
.highcharts-series-1 path{fill-opacity:1!important}
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

Leave a comment