In this example, we set options locally
<script>
$("#kitbox").kitbox({
kitboxType: "kitboxSeries",
dataType: "json",
url: "/pages/series/remote_json.php",
header: {text: "Setting Options Locally"},
options: {
structure: 'bars',
style: 'steps',
stack: false,
fill: false,
marking_delimiter: 5,
tick_delimiter: 10,
overview: true,
dataTable: true,
theme: 'kitbox',
height: 500,
yaxis: {min:0, max:750}
}
});
</script>