如何隐藏绘图图表上显示的点?
我有以下jqPlot
图表:
$(document).ready(function () { var line1 = new Array(); @foreach (var item in Model) { line1.push(["@item.VisitDate.Value.ToString("dd-MMM-yyyy")", @item.count]); } var plot1 = $.jqplot('chart1', [line1], { title: 'Number Of Visits', 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: '%s' }, cursor: { show: true, tooltipOffset: 6 } }) });
但我需要隐藏数组中每个值当前显示在绘图表上的圆形点。 换句话说,我需要jqPplot
图表只显示一条简单的线,没有任何圆点,荧光笔或勾选等。
要摆脱圆形标记,您需要使用以下选项。
seriesDefaults: { showMarker: false }, axesDefaults: { showTicks: false, showTickMarks: false },
请参阅此代码示例。