我们可以将图例的位置从默认左侧更改为右侧或底部吗?
我们如何在鼠标指针上实现悬停,即内容应该显示在鼠标指针上而不是其他 DIV 中
legend 选项采用“位置”属性来指定它的位置:
legend: {
position: "ne" or "nw" or "se" or "sw"
}
“在鼠标指针上”是什么意思。你想让“内容”跟随指针吗?
这是您正在使用的库的文档:
https://github.com/flot/flot/blob/master/API.md#customizing-the-legend
legend: {
show: boolean
labelFormatter: null or (fn: string, series object -> string)
labelBoxBorderColor: color
noColumns: number
position: "ne" or "nw" or "se" or "sw"
margin: number of pixels or [x margin, y margin]
backgroundColor: null or color
backgroundOpacity: number between 0 and 1
container: null or jQuery object/DOM element/jQuery expression
sorted: null/false, true, "ascending", "descending", "reverse", or a comparator
}