anychart.onDocumentReady(function () {
var chart = anychart.pie([
{x: 'Cycling', value: 250},
{x: 'Swimming', value: 12},
{x: 'Hiking', value: 11},
{x: 'Alpinism', value: 9}
chart.forceHoverLabels(true);
chart.title('Set showing of the label in hover mode. Hover on the slices without labels');
chart.container('container');