0
我已經能夠通過爲我的數據集中的每個時間跨度創建一個新的系列來創建帶有大寫的水平線圖。
儘管這反映了我的目光,但我想知道這是否是實現我目標的最有效方式。
jqPlot帶有間隙的折線圖
public class PlayerSession
{
public string PlayerSessionId { get; set; }
public string PlayerName { get; set; }
public DateTime LoginDateTime { get; set; }
public DateTime LogoutDateTime { get; set; }
}
@model List<PlayerSession>
@{
List<List<List<string>>> series = new List<List<List<string>>>();
foreach(PlayerSession playerSession in this.Model)
{
series.Add(new List<List<string>> {
new List<string> {
playerSession.LoginDateTime.ToString(),
playerSession.PlayerName
},
new List<string> {
playerSession.LogoutDateTime.ToString(),
playerSession.PlayerName
}
});
}
}
<div id="player-session-graph"></div>
<script type="text/javascript">
$(document).ready(function() {
$.jqplot('player-session-graph', @Html.Raw(Json.Encode(series)),{
seriesDefaults: {
showMarker: false,
color: '#446C32',
lineWidth: 10,
lineCap: 'butt'
},
axes: {
yaxis: { renderer: $.jqplot.CategoryAxisRenderer },
xaxis: {
renderer: $.jqplot.DateAxisRenderer,
tickOptions: {
formatString: "%a, %b %e, %Y", angle: -30
},
min: '2013-05-19',
max: '2013-05-25',
tickInterval: '1 day'
}
}
});
});
</script>
下面是結果:
上更有效的方式來繪製這些行任何有識之士將受到歡迎。謝謝!
我相信,酒吧的寬度是指寬度,如果酒吧,假設一個垂直的方向。 –
這將產生一個更輕的酒吧(或更厚的一個) – AnthonyLeGovic