• Content count

    12
  • Joined

  • Last visited

About [email protected]

  • Rank
    Junior Member
  1. Hi, I am having dashboards and i am using "export button" to export in each chart, now i want to provide the button for printing the entire page( entire dashboard). So i tried following code to achieve which is taken from fusionchart documentation. But this code is taking too much time to print and if i use this concept, it will be a performance issue, So please help me out to achieve this using any alternative way or any modification i need to in the following code. Its very Urgent . <html> <head> <title>FusionCharts Print Manager</title> <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> <script type="text/javascript"> function Print_chart() { FusionCharts.printManager.enabled(true); FusionCharts.addEventListener ( FusionChartsEvents.PrintReadyStateChange , function (identifier, parameter) { if(parameter.ready){ alert("Chart is now ready for printing."); document.getElementById('printButton').disabled = false; } }); var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer"); } </script> </head> <body onload="Print_chart();"> <div id="chartContainer">FusionCharts will load here!</div> <input type="button" onclick="FusionCharts.printManager.managedPrint()" value="Managed Print" disabled="disabled" id="printButton" > </body> </html> Thank you, Regards, Ravikumar M
  2. Hello friends, I am using fusion charts ssgrid to display a list(labels) in which one or more of them contains the "&" sign as a result the corresponding xml is not getting generated for the selection from a dropdown list.We need the grid to display the entire list (along with the labels having "&" in them) for all selections from dropdown. Thanx to all, Prateek A.
  3. Hello friends, In a normal Grid Labels appear on Left side and Values appear on right side by default.My requirement is exactly opposite of that as stated in the title. I can't interchange the the database columns being used as 'Labels' and 'Values' attributes in <Set> as 'Values' can only accept numbers and not string. I wish to display ID (which is a number) as Left side and names on the right side of grid. Thanx All, Please reply ASAP as can't give my final solution without it.
  4. Hello Friends, I am using a Grid(ssgrid.swf) in my php page which has fixed height but no.of rows of output varies depending upon a selection on my page.It can be 1 or many depending on the selection. What happens is that the vertical(height) of the rows gets changed according to the no. of outputs ( the total height of the grid is occupied by all row(s) whether 1 or many) which is not at all desired. What I want is that vertical space b/w records should fixed irrespective of the no. of records(1 or many) i.e. each record/row should always have a fixed height (irrespective of no. of outputs). I have tried necessary combination of properties given in the grid documentation by which I was able to customize display(output) to some extent but I am not able to do this using those props. Thanx all. for example if i have only 1 row as output it should appear like this: heavy motors 458693456
  5. Hello Friends, I am using a Grid(ssgrid.swf) in my php page which has fixed height but no.of rows of output varies depending upon a selection on my page.It can be 1 or many depending on the selection. What happens is that the vertical(height) of the rows gets changed according to the no. of outputs ( the total height of the grid is occupied by all row(s) whether 1 or many) which is not at all desired. What I want is that vertical space b/w records should fixed irrespective of the no. of records(1 or many) i.e. each record/row should always have a fixed height (irrespective of no. of outputs). I have tried necessary combination of properties given in the grid documentation by which I was able to customize display(output) to some extent but I am not able to do this using those props. Thanx all. for example if i have only 1 row as output it should appear like this: heavy motors 458693456