<script id="scriptInit" type="text/javascript">
$(document).ready(function () {
$("#wijbarchart").wijbarchart({
seriesHoverStyles: [{
fill: "turquoise", stroke: "teal"
},
{
fill: "fuchsia", stroke: "blue"
},
{
fill: "purple", stroke: "navy"
}],
seriesList: [{
label: "US",
data:
{
x: ['PS3', 'XBOX360', 'Wii'],
y: [12.35, 21.50, 30.56]
}
},
{
label: "Japan",
data:
{
x: ['PS3', 'XBOX360', 'Wii'],
y: [4.58, 1.23, 9.67]
}
},
{
label: "Other",
data:
{
x: ['PS3', 'XBOX360', 'Wii'],
y: [31.59, 37.14, 65.32]
}
}],
});
});
</script>