2013-06-13 64 views
0

我想使用jqplot爲我的折線圖添加工具提示。 u能請告訴我如何添加它.. 這裏是我的代碼:使用jqplot的折線圖工具提示

$(document).ready(function(){ 
    var plot2 = $.jqplot('chart1', [result], { 
     seriesColors: [ "#000000", "#ff0000"], 

      axes:{ 
       xaxis:{ 
       renderer:$.jqplot.CategoryAxisRenderer 
       } 
      }, 
series:[{lineWidth:4, markerOptions:{style:'square'}}], }); }); 

在此先感謝..

回答

0

試試下面的代碼

highlighter: { 
     show: true, 
     sizeAdjust: 7.5 
     } 
搜索

FIDDLE

0

您可以通過Jqplot網站開始:

查找範例here

再次更多示例here,

特別是關於工具提示here

最後,你可以找到單證here

我認爲你可以很容易地找到其他環節做您最喜愛的網絡搜索引擎或stackoverflow.com

+0

非常感謝... 我得到了它.. – Arun

相關問題