anychart.onDocumentReady(function () {
var chart = anychart.pie([
{x: "Balthasar", value: 1},
{x: "Melchior", value: 3},
chart.labels().fontFamily("Menlo");
chart.labels().fontSize(18);
chart.labels().fontDecoration("underline");
chart.labels().fontWeight(900);
chart.title("Labels font");
chart.container("container");