Hi
Sorry for late reply ,
here is my code
i Open in IE 9 and view and selected the source code, please provide your assistence
<head>
<title>Overall provider stats </title>
<link rel="stylesheet" href="/myhc-cont/css/myhcscreen.css" media="screen" />
</head>
<body>
<div id="stats">
<div class="right"><a href="
http://www.myhotcourses.com/"><img src="/myhc-cont/img/myhclogo.gif" width="202" height="35" alt="Myhotcourses.com" border="0"/></a></div>
<h1>Overall provider stats</h1>
<div class="right clear"><a href="/cmint/stats/search.html?action=intsalesstats&searchStatsRpt=Yes&startDate=06-Jan-13&endDate=05-Feb-13&searchInstitutionId=3769&reportTypeId=1&keyId=10&mobileFlag=A&&selectedOrderItems=551577&graphType=bar">Bar chart</a> | <a href="/cmint/stats/search.html?action=intsalesstats&searchStatsRpt=Yes&startDate=06-Jan-13&endDate=05-Feb-13&searchInstitutionId=3769&reportTypeId=1&keyId=10&mobileFlag=A&&selectedOrderItems=551577&graphType=line">Line chart</a></div>
<input type="hidden" name="keyDisplayName" value="Total onsite engagement" />
<div class="graph" id="graph" style="margin-top:50px !important;">
<script type="text/javascript">
google.load('visualization', '1', {packages: ['columnchart']});
//google.load('visualization', '1', {packages: ['corechart']});
var data;
function drawVisualization()
{
// Create and populate the data table.
data = new google.visualization.DataTable();
data.addColumn('string', 'Description');
data.addColumn('number', 'Total');
data.addRows(1);
data.setCell(0, 0, '06 Jan');
data.setCell(0, 1, 0);
data.addRows(1);
data.setCell(1, 0, '07 Jan');
data.setCell(1, 1, 0);
data.addRows(1);
data.setCell(2, 0, '08 Jan');
data.setCell(2, 1, 0);
data.addRows(1);
data.setCell(3, 0, '09 Jan');
data.setCell(3, 1, 0);
data.addRows(1);
data.setCell(4, 0, '10 Jan');
data.setCell(4, 1, 0);
data.addRows(1);
data.setCell(5, 0, '11 Jan');
data.setCell(5, 1, 0);
data.addRows(1);
data.setCell(6, 0, '12 Jan');
data.setCell(6, 1, 0);
data.addRows(1);
data.setCell(7, 0, '13 Jan');
data.setCell(7, 1, 0);
data.addRows(1);
data.setCell(8, 0, '14 Jan');
data.setCell(8, 1, 0);
data.addRows(1);
data.setCell(9, 0, '15 Jan');
data.setCell(9, 1, 0);
data.addRows(1);
data.setCell(10, 0, '16 Jan');
data.setCell(10, 1, 0);
data.addRows(1);
data.setCell(11, 0, '17 Jan');
data.setCell(11, 1, 2);
data.addRows(1);
data.setCell(12, 0, '18 Jan');
data.setCell(12, 1, 0);
data.addRows(1);
data.setCell(13, 0, '19 Jan');
data.setCell(13, 1, 0);
data.addRows(1);
data.setCell(14, 0, '20 Jan');
data.setCell(14, 1, 0);
data.addRows(1);
data.setCell(15, 0, '21 Jan');
data.setCell(15, 1, 1);
data.addRows(1);
data.setCell(16, 0, '22 Jan');
data.setCell(16, 1, 0);
data.addRows(1);
data.setCell(17, 0, '23 Jan');
data.setCell(17, 1, 0);
data.addRows(1);
data.setCell(18, 0, '24 Jan');
data.setCell(18, 1, 0);
data.addRows(1);
data.setCell(19, 0, '25 Jan');
data.setCell(19, 1, 0);
data.addRows(1);
data.setCell(20, 0, '26 Jan');
data.setCell(20, 1, 0);
data.addRows(1);
data.setCell(21, 0, '27 Jan');
data.setCell(21, 1, 0);
data.addRows(1);
data.setCell(22, 0, '28 Jan');
data.setCell(22, 1, 0);
data.addRows(1);
data.setCell(23, 0, '29 Jan');
data.setCell(23, 1, 0);
data.addRows(1);
data.setCell(24, 0, '30 Jan');
data.setCell(24, 1, 0);
data.addRows(1);
data.setCell(25, 0, '31 Jan');
data.setCell(25, 1, 0);
data.addRows(1);
data.setCell(26, 0, '01 Feb');
data.setCell(26, 1, 0);
data.addRows(1);
data.setCell(27, 0, '02 Feb');
data.setCell(27, 1, 0);
data.addRows(1);
data.setCell(28, 0, '03 Feb');
data.setCell(28, 1, 0);
data.addRows(1);
data.setCell(29, 0, '04 Feb');
data.setCell(29, 1, 0);
data.addRows(1);
data.setCell(30, 0, '05 Feb');
data.setCell(30, 1, 0);
// Create and draw the visualization.
chart=new google.visualization.ColumnChart(document.getElementById('graph'));
var options = {
//width: 1500,
height: 700,
fontSize: 20,
legend: 'bottom',
isStacked: true,
chartArea: {left: 80, top: 50},
titleX: 'Date', titleY: 'Page views',
title: 'Total onsite engagement'
};
chart.draw(data, options);
}
google.setOnLoadCallback(drawVisualization);
</script>
</div>
</div>
</body>
</html>