ido117

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by ido117

  1. Hello, I'm using similar code to this for print flash charts in the document.ready event FusionCharts.printManager.enabled(true); var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "0" ); myChart.setDataURL("Data.xml"); myChart.render("chartContainer"); FusionCharts.addEventListener ( FusionChartsEvents.PrintReadyStateChange , function (identifier, parameter) { if(parameter.ready){ Print_Content(); } }); The problem is that in Google Chrome the event sometimes not firing (even after couple minutes wait) Usally when I try to print multiple times Also, in that case: FusionCharts.printManager.isReady() always returns false... What can I do? (my version is 3.2.1) Thanks, Ido
  2. 3D Pie Chart Custom Labels

    Hello, I need to create pie chart with custom labels, every label with 3 rows, where the first line shows the topic (in blue color with underline) and acts as hyperlink, and the second and third lines shows other data. I attached an image shows what I need. is it possible ? Another thing, I saw that when I have labels with more the 8 words (approximately 30 characters) the graph minimized. can I force the graph not to resize and stay in the original size ? Thanks, Ido.
  3. 3D Pie Chart Custom Labels

    The version is 3.2.1-release. I checked in the FusionCharts.js file for version number. do I need to update ? If yes, to which version and what price?
  4. 3D Pie Chart Custom Labels

    Thanks for your answer. I just tried what you suggest and it didn't work. It still shows the label in one line. I also tried with the attribute 'displayValue' and got the same result. It only affect on the tooltip.
  5. Hello, Is it possible to create 2 multi-serires in the same graph? what I need is one multi-series for the current year and one for previous year. The graph needs to show income+outcome of 2012 and income+outcome of 2011 in the same graph separated by vLine as shown in the graph attached. I used MSColumn2D.swf for rendering the graph. Another questions, is it possible to align the text in the tool-tip to right ? because its written in Hebrew . And is it possible to make dashed color like shown in the graph on the left side ? thanks, Ido.