jQuery(function() {

    var temp = [
    [1228897800000, 38.3],
    [1228903200000, 39.0],
    [1228906800000, 37.8],
    [1228914000000, 37.7],
    [1228948200000, 37.0],
    [1228964400000, 38.2],
    [1228996800000, 37.8],
    [1229034600000, 37.8],
    [1229077800000, 38.5],
    [1229086800000, 36.7],
    [1229119200000, 37.2],
    [1229137200000, 36.5],
    [1229167800000, 37.7],
    [1229171400000, 37.2],
    [1229178600000, 37.9],
    [1229203800000, 36.0]
    ];
    

    jQuery.plot(
      jQuery("#placeholder"),
      [
        {
          data: temp,
          label:"体温の変化",
          lines: {
            show:true
          },
          points: {
            show:true
          },
          xaxis: {
            mode: "time",
            timeformat: "%m/%d %H%M"
          }
        }
      ]
      );
    }
);



