anychart.onDocumentReady(function () {
var chart = anychart.pie([
["Department Stores", 637166],
["Discount Stores", 721630],
["Men's/Women's Stores", 148662],
["Juvenile Specialty Stores", 78662],
["All other outlets", 90000]
chart.title("Aqua Style");
var labels = chart.labels();
labels.format(function() {
return((this.getData("value"))+"(of "+this.getStat("sum")+")");
labels.position("outside");
chart.container("container");