これは、flotの複数軸機能を使用して、ラベルに2番目の軸を追加します。
コード:
$.plot($("#placeholder"),
[ { data: [[1,1],[12,12],[45,45],[2,2],[7,7],[90,90],[112,112],[145,145],[87,87],[250,250]]},
{ data: [[]], xaxis: 2}], //second empty series
{
xaxes: [ {ticks:[100,155,230]}, // force tick location
{ticks: [50,127.5,192.5], // label locations, center them based on forced tick locations
min: 0, max: 250, // set min and max to scale 2nd axis
tickFormatter: // return string label instead of number
function formatter(val, axis) {
if (val == 50) return "blahblah";
else if (val == 127.5) return "huh";
else if (val == 192.5) return "metoo";
else return "";
}} ]
});
ここでフィドル。