填充虚线下方的区域

时间:2016-02-10 17:20:21

标签: flot

现在我有以下数据:

[{
  data : [[3, 4], [6, 5]],
  lines : { show : true, fill : true, steps : true },
  dashes: { show: true, lineWidth: 1 },
  color : 'red',
  label : 'Data series'
}]

如果我将lines.show更改为false,则该行下方的区域不会被填充。 dashes没有show属性。

是否可以填充虚线下方的区域?

1 个答案:

答案 0 :(得分:2)

我找到了一个解决方案:显示该行并将其宽度设置为0.

lines : { show : true, lineWidth : 0}