anychart.onDocumentReady(function () {
chart = anychart.venn(data);
chart.labels().format("{%name}\n\n{%custom_field}\n{%value}");
chart.intersections().labels().format("{%name}\n\n{%value}");
"Set Info: {%custom_field}\nCardinality: {%value}"
chart.intersections().tooltip().format(
"Intersection Info: {%custom_field}\nCardinality: {%value}"
chart.title("Venn Diagram: Labels and Tooltips (Tokens)");
chart.container('container');