anychart.onDocumentReady(function () {
{x: 'Food is tasteless', value: 65},
{x: 'Wait time', value: 109},
{x: 'Unfriendly staff', value: 52.5},
{x: 'Not clean', value: 45},
{x: 'Overpriced', value: 250},
{x: 'To noisy', value: 57},
var chart = anychart.pareto(data);
chart.getSeries(0).labels(true);
chart.getSeries(0).labels().position("Center");
chart.getSeries(0).labels().anchor("Center");
chart.getSeries(1).labels(false);
chart.getSeries(1).selectLabels().enabled(true);
chart.getSeries(1).selectLabels().anchor("bottom");
chart.getSeries(1).hoverLabels(true);
chart.getSeries(1).hoverLabels().anchor("bottom");
chart.getSeries(1).hoverLabels().format("{%Value}%");
chart.title("Pareto chart: labels configuration");
chart.container('container');