我有dis/likes的折線圖。正值應該有一個較深的綠色邊框,而紅色則表示較深的紅色邊框。此外,紅點應填充紅色,而不是綠色。浮動圖表 - 不同的線條和點顏色取決於數據
這就是它的樣子!
這是應該的樣子
幾個小時,我不可能獲得這個任何解決方案之後,所以任何幫助是值得歡迎的。下面是我的代碼:
$.plot("#curvePlaceholder", [{
data: data,
color: "#83ce16",
threshold: {
below: 0,
color: "#c00000"
},
lines: {
fill: true,
lineWidth: 3,
fillColor: {
colors: [{ opacity: 1 }, { opacity: 1 } ]
}
}
}],
{
series: {
lines: {
show: true,
fill: true
},
points: {
show: true,
fillColor: '#83ce16'
}
},
grid: {
hoverable: true,
clickable: true,
backgroundColor: 'transparent',
color: 'transparent',
show: true,
markings: [
{ yaxis: { from: 0, to: 0 }, color: "#737374"}
],
markingsLineWidth: 6
},
yaxis: {
show: false,
<?=$chart_data['ymin'];?>
<?=$chart_data['ymax'];?>
},
xaxis: {
show: false,
min: -0.4
}
});
你可以在jsfiddle中複製這個嗎?或者至少告訴我們'數據'等於什麼? – Mark