javascript – 不同颜色的酒吧用于Flot类别条形图

前端之家收集整理的这篇文章主要介绍了javascript – 不同颜色的酒吧用于Flot类别条形图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Flot中使用“类别”模式时,每个栏如何使用不同的颜色?

这个代码使每个条形在颜色数组中是第一个颜色.我希望每个栏都是颜色数组中相应的颜色.

当前代码

var data = [["Red",1],["Yellow",2],["Green",3]];

$.plot("#placeholder1div",[data],{
    series: {
        bars: {
            show: true,barWidth: 0.3,align: "center",lineWidth: 0,fill:.75
        }
    },xaxis: {
        mode: "categories",},colors: ["#FF0000","#FFFF00","#00FF00"]
});
@H_404_9@解决方法
通常我的建议与Flot,放下插件并配置它自己.
// separate your 3 bars into 3 series,color is a series level option
var data = [{data: [[0,1]],color: "red"},{data: [[1,2]],color: "yellow"},{data: [[2,3]],color: "green"}];

$.plot("#placeholder",data,xaxis: {
        // drop the categories plugin and label the ticks yourself
        // you'll thank me in the long run
        ticks: [[0,"Red"],[1,"Yellow"],[2,"Green"]]
    }
});

生产(小提琴here):

原文链接:https://www.f2er.com/js/153774.html

猜你在找的JavaScript相关文章