-1
線のプロットで一点のみの色を変更する方法はありますか? Hhint:私は使用のポイントの数は、現在のコードの4一点の色をFlotの線図でのみ変更してください
一部は以下である:
var Arr_data = [[]];
...
var plot1 = {
series: {
lines: {
show: false,
fill: 1,
},
splines: {
show: true,
tension: 0.4,
lineWidth: 2,
fill: 0.1,
},
points: {
radius: 8,
lineWidth: 1,
show: true,
symbol: "circle",
fillColor: customColorVar
},
...
$.plot($("#chartID"), [ Arr_data ], plot1);
同様の質問(同じ練習ですか?):https://stackoverflow.com/q/47572394/2610249 – Raidri