Xg6i\Ot`̑IƃOt\j
------------------------------------------------------------------
if(gstyle == "bar-v"){     //_OtAܐNtȂǃOt`̔f
    var gobj = new Plotr.BarChart("graph", options);  //_OtIuWFNg
  }else if(gstyle == "bar-h"){
    Object.extend(options,{ barOrientation: 'horizontal'}); //_Ot\w
    var gobj = new Plotr.BarChart("graph", options);
  }else if(gstyle == "line"){
    var gobj = new Plotr.LineChart("graph", options);   //ܐOtIuWFNg
  }else if(gstyle == "pie"){
    var gobj = new Plotr.PieChart("graph", options);    //~OtIuWFNg
}
  gobj.addDataset(dataset);
  gobj.render();                  //Ot`̎s
  $("gra").show();                //Ot̕\
  row1 = -1;
  col1 = -1;
}
------------------------------------------------------------------