jqplot を使用して、折れ線グラフにツール ヒントを追加したいと考えています。それを追加する方法を教えてください..これが私のコードです:
$(document).ready(function(){
var plot2 = $.jqplot('chart1', [result], {
seriesColors: [ "#000000", "#ff0000"],
axes:{
xaxis:{
renderer:$.jqplot.CategoryAxisRenderer
}
},
series:[{lineWidth:4, markerOptions:{style:'square'}}], }); });
前もって感謝します..