我正在尝试将自定义颜色数组添加到flot输入中。但是当我尝试在同一页面中绘制多个图形时。有些图形不采用输入颜色数组,而是使用默认颜色集。以下是使用的选项,其中colorPalette
是使用的自定义颜色数组。任何想法什么时候flot拒绝输入颜色数组和什么时候。
var options = {
colors: colorPalette,
legend: {
show: true,
margin: 10,
backgroundOpacity: 0.5,
position: 'nw'
},
yaxes: [
{
min: 0,
labelWidth : yAxisLabelWidth
},
{
alignTicksWithAxis: 1,
position: 'right',
min: 0,
labelWidth : yAxisLabelWidth
}
],
xaxis: {
mode: "time",
tickLength: 0
},
grid: {
borderWidth: 1,
borderColor: "#cccccc",
labelMargin: 10,
hoverable: true,
mouseActiveRadius: 8
},
stack: null,
bars: {
show: true,
align: 'center',
lineWidth: 1
},
multiplebars: true
};