0

现在我正在使用 LineRenderer 但我实际上需要这些点,我想避免在它们之间有线条。有渲染器吗?我试过 lineWidth: 0 但它仍然存在。

谢谢你的帮助。

4

2 回答 2

3

设置 showLinefalse

seriesDefaults: {    
                showLine:false, 
                },

showLine使用属性,是否渲染线段

于 2013-01-28T10:26:47.313 回答
0

你可以自定义你的情节

var plot = $.jqplot(id, [array], {
      axes:{
        xaxis:{
          renderer:$.jqplot.DateAxisRenderer, 
          tickOptions:{formatString:'%H:%M'},
          min:'June 16, 2008 8:00AM', 
          tickInterval:'2 weeks'
        }
      },
      series:[{lineWidth:1, 
            markerOptions: { style:'none', display: 'none' },
                showMarker:false}],
      seriesColors:["#FF0000"]
      ,grid: {
            backgroundColor: 'rgb(211, 233, 195)',
            shadow: true
            drawGridLines: true,        
            gridLineColor: '#cccccc',   
            background: '#fffdf6',      
            borderColor: '#999999',     
            borderWidth: 2.0,           
            shadow: true,               
            shadowAngle: 45,            
            shadowOffset: 1.5,          
            shadowWidth: 3,             
            shadowDepth: 3,             
            shadowAlpha: 0.07,  
            renderer: $.jqplot.CanvasGridRenderer, 
            rendererOptions: {}
      }
  });

更多示例:JQplot 示例页面

于 2016-08-26T19:35:21.400 回答