凡例の位置をデフォルトの左側から右側または下に変更できますか?
他の DIV ではなく、マウス ポインターに表示するコンテンツであるマウス ポインターにホバーを実装するにはどうすればよいですか
凡例オプションは、その場所を指定するために「位置」属性を取ります:
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
}