使用jqPlot在x轴上强调0

时间:2011-03-29 19:44:54

标签: jqplot

当使用jqPlot绘制图形时,我的曲线包含正值和负值,因此穿过x轴。我想强调0轴处的x轴,以更清楚地区分正值和负值。有没有办法做到这一点?

在我使用的代码下面有一个示例曲线:

$.jqplot(
     'plotDiv', 
      [[[40,-5], [41,-5], [42,-5], [43,-5], [44,-5], [45,-5],
       [46,-5], [47,-5], [48,-5], [49,-5], [50,-5], [51,-4], 
       [52,-3], [53,-2], [54,-1], [55,0], [56,1], [57,2], [58,3], [59,4], [60,5]]], 
    { title:{text:"Results"}, 
      axes: {
             yaxis: {tickInterval: 2, label: 'Profit'}, 
             xaxis: {tickInterval: 2, label: 'Price'}}});});

提前致谢

1 个答案:

答案 0 :(得分:4)

您可以使用画布叠加在y = 0上绘制一条线:

    canvasOverlay: {
        show: true,
        objects: [
            {horizontalLine: {
                name: '0 mark',
                y: 0,
                lineWidth: 2,
                color: 'rgb(0, 0, 0)',
                shadow: false
            }}
        ]
},  

使用画布覆盖的更多示例可以在jqPlot下载包中的“examples \ canvasOverlay.html”中找到。