我有以下负责显示图表的视图,目前出于测试目的,我正在为数组传递静态值,如下所示:-
@model IEnumerable<Medical.Models.Session>
<script src="../../Scripts/jqplot/jquery.jqplot.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.barRenderer.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.categoryAxisRenderer.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.pointLabels.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.dateAxisRenderer.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.highlighter.min.js" type="text/javascript"></script>
<script src="../../Scripts/jqplot/jqplot.cursor.min.js" type="text/javascript"></script>
<p>
<script type="text/javascript">
$(document).ready(function () {
line1 = [['23-May-2008', 578.55], ['20-Jun-2008', 566.5], ['25-Jul-2008', 480.88],
['22-Aug-2008', 509.84], ['26-Sep-2008', 454.13], ['24-Oct-2008', 379.75],
['21-Nov-2008', 303], ['26-Dec-2008', 308.56], ['23-Jan-2009', 299.14],
['20-Feb-2009', 346.51], ['20-Mar-2009', 325.99], ['24-Apr-2009', 386.15], ['01-Apr-2012', 786.15]];
var plot1 = $.jqplot('chart1', [line1], { title: 'Data Point Highlighting',
axesDefaults: { pad: 1.2 },
axes: { xaxis: { renderer: $.jqplot.DateAxisRenderer,
tickOptions: {
formatString: '%d/%b/%Y'
}
},
yaxis: { tickOptions: { formatString: '%.2f'} }
},
highlighter: { show: true, sizeAdjust: 7.5, tooltipLocation: 'nw'
// , formatString: '<b>%s</b>'
}, cursor: { show: true, tooltipOffset: 6 }
})
});
</script>
<div id = "chart1">
</div>
但我想要做的是用模型属性的值(而不是上面显示的静态值)填充 Line1 多维数组,其中包含Date & Result
类似于此的内容:-
@foreach (var item in Model) {
//code goes here,,
line1 [1,1] = [item.Date , item.Result] // only for describing what i am trying to do
}
-:::EDITED:::-构建模型的 Action 方法如下所示:-
public PartialViewResult showpatientsessions(int Medicine, int PatientID) {
var m = repository.showpatientsessions(Medicine, PatientID).OrderByDescending(d => d.Date);
return PartialView("_showpatientsessions",m);
}
型号是:-
public partial class Session
{
public int LabTestID { get; set; }
public int VisitID { get; set; }
public decimal Result { get; set; }
public Nullable<System.DateTime> Date { get; set; }
public string Comment { get; set; }
public virtual LabTest LabTest { get; set; }
public virtual Visit Visit { get; set; }
}