Initialization Code
<script>
$("#kitbox").kitbox({
kitboxType: "kitboxSeries",
dataType: "json",
url: "/pages/series/remote_json.php",
header: {text: "Multiple Graphs - Graph One"},
options: {
init: {
height: 400,
dataTable: false
}
}
});
$("#kitbox_two").kitbox({
kitboxType: "kitboxSeries",
dataType: "json",
url: "/pages/series/remote_json.php",
header: {text: "Multiple Graphs - Graph Two"},
options: {
init: {
height: 400,
dataTable: false,
structure: 'bars',
stack: true,
fill: true,
theme: 'kitbox'
}
}
});
</script>