分組創建多線圖表系列從一個表我已經從查詢動態表顯示,由DBGrid的,看上去像這樣按照日期
code | Name | Date | Time |Score
1 | Alex | 01-Feb-14 | 0600 |5
1 | Alex | 01-Feb-14 | 0700 |7
1 | Alex | 01-Feb-14 | 0800 |8
1 | Alex | 02-Feb-14 | 0600 |7
1 | Alex | 02-Feb-14 | 0800 |8
1 | Alex | 02-Feb-14 | 0900 |8
1 | Alex | 03-Feb-14 | 0700 |7
1 | Alex | 03-Feb-14 | 0800 |5
1 | Alex | 03-Feb-14 | 0900 |8
的輸入,查詢是code=1, date1=01-feb-14, date2=03-feb-14
我怎樣才能製作具有多個系列的折線圖,按xlabel = time和y value = score按日期分組? 我的僞代碼爲:
for date1 to date 2
chart1.addseries
for time=lowesttime to highesttime do
begin
series.xlabel = time
series.yvalue = score
end
它會是這個樣子
thx Sir Rufo先生的照片,無論如何,這是我的第一個問題,如果我需要提供更多的數據或其他請告訴我。 謝謝 – waladi
可能的重複,[用時間繪製TChart作爲X軸](http://stackoverflow.com/q/4791053/576719)。 –
我並不是真的想要標籤的系統時間,我的意思是記錄在我的桌子上的時間。加上我需要使它成爲一個新的系列,每次更改日期時, 但是如果我問錯了問題,我很抱歉。 – waladi