anychart.onDocumentReady(function () {
var chart = anychart.pie([
{name: 'Point 1', value: 230000},
{name: 'Point 2', value: 204524.489354},
{name: 'Point 3', value: 235401.56923},
{name: 'Point 4', value: 132135},
{name: 'Point 5', value: 102427},
{name: 'Point 6', value: 310846}
var currentLabels = chart.labels();
currentLabels.format(function () {
return anychart.format.number(this.value, 3, ".", ",")
chart.container("container");