jami

Members
  • Content count

    24
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by jami

  1. I wnat add an additional figure, and it can simultaneously display values. Can fushionchart achieve this effect?
  2. Sumedh, Thanks for your reply.
  3. Reload chart is ok in line chart, but it fail in Bubble chart. Any help is appreciated Thanks My code is as follow: <script type="text/javascript"> var chart = new FusionCharts("./FusionCharts/Bubble.swf", "ChartId", "470", "515", "0", "0"); chart.setXMLUrl(escape("volChart.php?stockid=<?php echo $_GET['stockid'];?>&date2=<?php echo $_GET['date2'];?>&brokerid=<?php echo $brokerid;?>")); chart.render("chartdiv"); function changeData(bid) { var oldChart = FusionCharts("myChartId"); oldChart.setXMLUrl("index_vol2dailychart.php?brokerid="+bid+"&stockid=<?php echo $_GET['stockid'];?>&date2=<?php echo $_GET['date2'];?>"); } </script> <input type="radio" name="radio" id="radio" value="radio" onclick="changeData(<?php echo "'". $row_rs_BS['brokerid'] . "'";?>);"/>
  4. In server, it is ok. Thanks for your help.
  5. Hi, Your attached file can't work. I have use google chrome and ie to try, but it fail.
  6. for example: To show a star on $39.7 bar, how can I do it? Thanks.
  7. How can I set y-axis space from the picture edge? Thanks.
  8. How To Set Y-Axis Space?

    It's ok. Thank you.
  9. How To Reload Chart?

    I click a button to chang chart by javascript sending paramenter, but it fail. Is red word wrong? <script type="text/javascript"> function get_chart_type() { var oldChart = FusionCharts("myChartId"); var newChart = oldChart.clone({swfUrl:"./FusionCharts/MSColumn2D.swf", setXMLUrl:escape("BS.php?brokerid=1360&stockid=1101") }); newChart.render("chartContainer"); } </script> it is ok when initial loading. --------------------------- <body> -------------------------------------------- <div id="chartContainer">FusionCharts2 will load here!</div> <script type="text/javascript"> var myChart2 = new FusionCharts( "./FusionCharts/MSColumn2D.swf", "myChartId", "950", "300", "0", "0" ); myChart2.setXMLUrl(escape("BS.php?brokerid=1360&stockid=1101")); myChart2.render("chartContainer"); </script>
  10. As the attached picture, how can I make additional setting to do it? Thanks. the code as follow: <chart numPDivLines='5' caption='<?php echo $row_rs_stock['stockname'];?> (<?php echo $row_rs_stock['stockid'];?>)' PyAxisMinValue='<?php echo ($min-$step);?>' PyAxisMaxValue='<?php echo ($max+$step);?>' canvasBorderColor='DAE1E8' canvasBgColor='FFFFFF' bgColor='EEF2FB' adjustDiv='0' divLineColor='DAE1E8' decimalPrecision='2' numberPrefix='' showNames='1' bearBorderColor='000000' bearFillColor='000000' bullBorderColor='1F3165' bullFillColor='FF0000' baseFontColor='444C60' outCnvBaseFontColor='444C60' hoverCapBorderColor='DAE1E8' hoverCapBgColor='FFFFFF' rotateNames='0' PYAxisName='Price' VYAxisName='VOL' volumeHeightPercent='20' animation='0' showAboutMenuItem='0' >
  11. As attached file, how to hide the value with red box on Marimekko chart? Thanks.
  12. Don't Show Value On Marimekko Chart?

    It's ok. Thanks for your reply.
  13. Hi, The Y axis value of the fushioncharts as attached file1 is left. How to change to right as attached file2? Thanks.
  14. hiAs attached picture, I want to set tooltip background and some word bold and padding value, how to do it? Thanks.
  15. It's ok. Thanks for your help.
  16. Sorry, this is a mistake which is not my meaning. I want to set an image in the background of the tooltip. And find tune the padding of the tooltip as attached file.
  17. <chart numPDivLines='5' caption='TEST' yAxisMinValue='10' yAxisMaxValue='100'> <dataset> <set open='24.6' high='25.24' low='24.58' close='25.19' x='1'/> <set open='24.36' high='24.58' low='24.18' close='24.41' x='2'/> <set open='24.63' high='24.66' low='24.11' close='24.15' x='3'/> </dataset> How can I modify it?
  18. Font Style is ok, but the method to set the style of background picture doesn't find. And also the padding effect by leftMargin can't work. Thanks for your reply.
  19. Yaxisminvalue Can Not Work!

    It's work. Thanks for your help.
  20. I use StackedColumn2D on my charts. I want to set a Picture on selective data the, like the following example: It's my php code : for($t=0; $t<count($price2); $t++) { if(($t%$num)==0){ $FC->addCategory($price2[$t], "showName=1"); }else{ $FC->addCategory($price2[$t], "showName=0"); } } for($k=0; $k<11; $k++) { $FC->addDataset($numList[$k],"color=" . $color[$k]); for($t=0; $t<count($price2); $t++) { if(!is_null($BS2[$t][$k]) and $BS2[$t][$k]!=""){ $b = $BS2[$t][$k]; }else{ $b = 0; } $FC->addChartData($b ); // <= add code in this? } }
  21. How can I use displayValue on my code? I also tried doing this: $FC->addChartData($b, "displayValue=test" ); But it doesn't work. please guide me if i am making any mistake, thanks.
  22. I can't find the relative data. How can I do it, anyone help me?
  23. I use StackedColumn2D on my charts. I want to make out the following example: http://sharecapture....9b653e7a7bc582e Whether which side I need to modify? It's my code : for($t=0; $t<count($price2); $t++) { if(($t%$num)==0){ $FC->addCategory($price2[$t], "showName=1"); }else{ $FC->addCategory($price2[$t], "showName=0"); } } for($k=0; $k<11; $k++) { $FC->addDataset($numList[$k],"color=" . $color[$k]); for($t=0; $t<count($price2); $t++) { if(!is_null($BS2[$t][$k]) and $BS2[$t][$k]!=""){ $b = $BS2[$t][$k]; }else{ $b = 0; } $FC->addChartData($b ); } }