jQuery Chart Setup

In order to take advantage of the functionalities offered by our chart component, you will need to:
1. Include references to all required scripts.
2. Add the control declaration along with the desired properties.

<!DOCTYPE html>
<html>
<head>
<title>Shield Chart</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/shieldui-all.min.js" type="text/javascript"></script>

</head>
<body>

<div id="container" style="width:600px; height:400px;"></div>

<script type="text/javascript">
$(document).ready(function () {
	$("#container").shieldChart({
		dataSeries: [
			{
				seriesType: 'pie',
				applyAnimation: false,
				data: [1, 3, 4, 5]
			}
		]
	});
});
</script>

</body>
</html>

This approach is demonstrated in the following example.
It uses a different path to load the required scripts, but the logic remains the same.