<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
// create variable for custom theme
var customTheme = {
"defaultFontSettings": {
"fontSize": 9,
"fontWeight": 100,
"fontColor": "#0000CD"
},
"chart": {
"title": false,
"legend": false
};
// data
var data = [
["Alice", 33],
["Bob", 23],
["Jake", 35]
];
// apply custom theme
anychart.theme(customTheme);
var table = anychart.standalones.table();
table.contents([
[
anychart.column(data),
anychart.pie(data),
anychart.radar(data)
]
]);
table.container("container");
table.draw();
});