<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var data = [
{x: 'A', value: 20},
{x: 'B', value: 12},
{x: 'C', value: 17},
{x: 'A&B', value: 4},
{x: 'B&C', value: 5},
{x: 'A&C', value: 7},
{x: 'A&B&C', value: 1}
];
var chart = anychart.venn(data);
// Set chart credits settings.
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
chart.credits({text: 'Changed credits', url: 'https://www.anychart.com/buy/'});
chart.title('Set chart credits parameter as an object');
chart.container('container');
chart.draw();
});