I want the legends to appear on the left side. Now it is coming on top of pie chart
  PieChart::create(array(
        "title"=>"Sale Of Category",
        "dataSource"=>$newStore,
        "columns"=>array(
            "category",
            "cost"=>array(
                "type"=>"number",
                //"prefix"=>"$",
            )
        )
    ));
Is there any property to change the legends to left side. position vertically . instead of top horizontal?