Simple Configuration - Description

In this example, we create a simple KitBox using a JavaScript array as a data source. We have turned the data table and overview off to show the graph in it's simplest form.

Live Example

Initialization Code

			$("#kitbox").kitbox({
				kitboxType: "kitboxSeries",
				dataType: "array",
				dataSource: {"data": [{ "data": [1,5,3,4,2], "label": "Line One"},
				  					  { "data": [3,4,2,5,1], "label": "Line Two"}], 
				  			"xaxis": [1,2,3,4,5]},
				header: {text: "Simple Configuration"}
			});