我有以下jqPlot
图表:
$(document).ready(function () {
var line1 = new Array();
@foreach (var item in Model)
{
<text>line1.push(["@item.VisitDate.Value.ToString("dd-MMM-yyyy")", @item.count]);</text>
}
var plot1 = $.jqplot('chart1', [line1], { title: '<span style="Color: Green " >Number Of Visits</span>',
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 }
})
});
但我需要为数组中的每个值隐藏当前显示在绘图图表上的圆形点。换句话说,我需要jqPplot
图表只显示一条简单的线,没有任何圆形点、荧光笔或刻度选项等。