Hi
guys
I am using high chart in my webpage. when i click over my chart it is showing only name :total file dispatched :1000....page is not showing the counting
i.e 1000.
here is my code. kindly suggest.
<script>
$(document).ready(function () {
RenderPieChart('container', [
['Total File Dispatched', 1120],
['Total File Received', 1429],
['Total Letter Dispatched', 0],
['Total Letter Received', 0],
]);
$('#btnPieChart').live('click', function(){
var data = [
['Total File Dispatched', 1120],
['Total File Received', 1429],
['Total Letter Dispatched', 0],
...
Go to the complete details ...