chartjs用不同颜色的线图点

问题描述 投票:0回答:1

我正在使用angularjs的chartjs图表我关心的是线图上的点我需要根据数据的范围给它们不同的颜色。任何人都可以帮我怎么做才能改变fillcolor属性

function drawChart(placeholder, values1, labels1) {
    var plot = $.plot(placeholder,
        [{
                data: values1,
                label: label1,
                lines: {
                    show: true,
                    lineWidth: 2,
                    fill: true,

                },
                points: {
                    show: true,
                    lineWidth: 3,
                    fill: true,
                    fillColor: '#fafafa'
                }

            },
        });
javascript angularjs chart.js
1个回答
0
投票

我没有足够的细节知道您的问题是否来自那里,但代码的语法不正确。

你应该有 :

function drawChart(placeholder, values1, labels1) {
    var plot = $.plot(placeholder,
        [{
            data: values1,
            label: label1,
            lines: {
                show: true,
                lineWidth: 2,
                fill: true,

            },
            points: {
                show: true,
                lineWidth: 3,
                fill: true,
                fillColor: '#fafafa'
            }

        }]
    });
}
© www.soinside.com 2019 - 2024. All rights reserved.