在Highchart长条图的梯度背景酒吧

时间:2016-04-13 06:24:15

标签: javascript html css highcharts gradient

我的问题是更改高图条形图中的背景条。我可以将条形图更改为特定颜色,如下图所示,但我想将其设为渐变色。

在这段代码中,我在图表选项中使用了红色(FF0000)。如何更改渐变背景?

HTML:

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

JS:

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'bar'
        },
        title: {
            text: 'Historic World Population by Region'
        },
        colors: [
            '#ff0000'
            ],
        xAxis: {
            categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
            title: {
                text: null
            }
        },
        yAxis: {
            min: 0,
            max: 100,
            title: {
                text: 'Percentage',
                align: 'high'
            },
            labels: {
                overflow: 'justify'
            }
        },
        tooltip: {
            valueSuffix: ' millions'
        },
        plotOptions: {
            bar: {
                dataLabels: {
                    enabled: true
                }
            }
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -40,
            y: 80,
            floating: true,
            borderWidth: 1,
            backgroundColor: ((Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'),
            shadow: true
        },
        credits: {
            enabled: false
        },
        series: [{
            name: 'Year 1800',
            data: [10, 31, 63, 3, 28]
        }]
    });
});

JSFiddle

1 个答案:

答案 0 :(得分:1)

JsFiddle

请参考以上小提琴检查结果

首先,根据Highcharts

声明一个渐变
const color_grad1 = {
                    linearGradient: { x1: 0, x2: 0, y1: 0, y2: 1 },
                    stops: [
                    [0, '#fdfc47'],
                    [1, '#24fe41']
                                    ]
                        };

然后按如下方式使用渐变:

data: [{y: 10, color: color_grad1}, 31, 63, 3, 28]
相关问题