json/ajaxリクエストからのデータをプロットするための次のコードがあります
function plotit(data){
$.jqplot.config.enablePlugins = true;
$("#jqplot-chart1").empty();
plot1 = $.jqplot('jqplot-chart1', data,{
axesDefaults: { pad: 1.2},
title: 'data',
animate: true,
animateReplot: true,
axes: {
xaxis: {
label: "---",
tickOptions: {formatString: '%d-%m-%Y'}, // ex 02-09-2002,23:09:55 - %d
renderer: $.jqplot.DateAxisRenderer
},
yaxis: {
label: "Y "
}
},
cursor:{
zoom: true,
showTooltip : true,
constrainZoomTo : 'x',
showVerticalLine : true
}
}
);
}
これは、json応答データの例です。
[[["2013-03-02 00:00:00","2"],["2013-03-01 00:00:00","72"],["2013-02-28 00:00:00","26"],["2013-02-27 00:00:00","67"],["2013-02-26 00:00:00","48"],["2013-02-25 00:00:00","50"]]]
しかし、私がプロットするとき、基本的に私は2つの問題を抱えています:-最初は、プロットの上部と最大値の間のパディングが巨大であり、プロットの高さを動的に調整したいです(写真の赤い矢印) 2つ目は、右側の最後の値がプロットの境界線に付加されていることです(画像の青矢印)![プロット結果] [1]
誰かが私を助けることができますか?
これは問題を説明する画像です: