chumba

Members
  • Content count

    28
  • Joined

  • Last visited

About chumba

  • Rank
    Forum Member
  1. Distribution Question - Free Version

    Great news. Once the product is ready i'll send the info to you.
  2. I am developing a PHP web survey app which will be entirely free to use and download (kind donations will be accepted through paypal). I would like to use fusioncharts to display the survey results - pie charts , line graphs, etc. Is it ok to include fusioncharts free inside the zip file containing the survey app?
  3. yes, that works. thanks. Its in the documentation. i should have looked more closely
  4. Hello i'm using a bar2d to output some data that is contained within an array. i would like all bars to be the same colour except one, that represents the logged in user. assuming the following code snippet how can i customise the colour of one bar? //Store Name of Products in the first column of the array $arrData[0][0] = "Singapore"; $arrData[1][0] = "India"; $arrData[2][0] = "England"; $arrData[3][0] = "Germany"; //Store sales data in the second column of the array $arrData[0][1] = 567500; $arrData[1][1] = 815300; $arrData[2][1] = 556800; $arrData[3][1] = 734500; //add the logged in user $arrData[4][0] = "You"; $arrData[4][1] = 123455; $FC = new FusionCharts("Bar2D","600","300"); # Call FusionCharts PHP Class Function to add data from the array $FC->addChartDataFromArray($arrData); how can i have all the bars green, except "you" which can be in red?
  5. FusionCharts v4 ?

    Any info regaring v4 ? If I buy v3 now, will I be entitled to a free upgrade to v4?
  6. wmode = transparent

    thanks that helps.
  7. wmode = transparent

    Basundhara, how to set wmode using php class? is it: $strParam="caption=MyChart;isTransparent=1; showBorder=1;" because it doesnt work . the guide to the php API doesn't mention how to set wmode.
  8. Thats very cool. have you got some more detailed instructions, with screen shots? 1. You need to create a chart in Flash 8 (so the output is a flash movie SWF file) 2. Also get the XML embedded into the movie itself . So NO external dependencies how? 3. Add the SWF (created in Flash) to a PDF using Adobe Acrobat Professional 8 or above.
  9. server side the entire page though, not only the charts. Can it be done?
  10. Hi I have a report page that contains some tables of data and 3 fusioncharts. I would like to be able to automatically generate a pdf copy of this page. So, does anybody know how to automatically output a php file to a webpage? I have seen fpdf, but I want to provide the existing php page as the input.
  11. wmode = transparent

    hi how can i add the above code if i am using PHP Class i tried: # Define chart attributes $strParam="caption=Points for $yr;isTransparent=0; showBorder=1;labelDisplay=ROTATE;numberSuffix=;exportEnabled=1; legendPosition=right;yAxisMaxValue=100; decimals=0; rotateLabels=1;yAxisName=Average Points for all Checklists;exportHandler=$serverip; exportAtClient=0; exportAction=download; exportFileName=$filename;"; but it doesnt work secondly, The documentation for PHP class is very limited. can you provide more description. e.g. how to do a multiseries chart using php class.
  12. Good luck with that ! Let me know how it goes.
  13. can you supply the generic code for this? I don't understand