hMayuresh
Members-
Content count
37 -
Joined
-
Last visited
Everything posted by hMayuresh
-
Hi, I am trying to show line graph. but when ther is data with 1 or 0 data points, values on Y-axis gets duplicated. Means if my resulting values for Y-axis are 0 or 1, names on Y-axis gets duplicated as 0-0-1-1-2-3 like this. Can nay one help me to resolve this? Thanks, Mayuresh
-
Multiple Lines In Single Graph With Individual Zero Planes
hMayuresh posted a topic in FusionCharts and PHP
Hi friends, I want to draw a chart with multiple lines with individual zero planes in single graph. But i don't have any negative value for zero plane...is it possible in fusion chats? I have attached image with this for example. Please help me for this. Thanks, Mayuresh -
Multiple Lines In Single Graph With Individual Zero Planes
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi Bindhu, Thanks for the information. -
Multiple Lines In Single Graph With Individual Zero Planes
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi Bindhu, Thanks for your reply. But I need each line with zero plane only. And having individual y- axis values start with 0. If you find anything on this, please kindly do let me know Thanks Again. -
Multiple Lines In Single Graph With Individual Zero Planes
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Is there any one who can help me on this? -
Hello friends, After very long time I am back on fusion charts, I am using Funnel chart and just above that funnel chart div, i have one dropdown. When I click on dropdown then the options from the dropdown are going back to funnel chart. This is a chrome And IE issue, otherwise it is working perfect. Please help me on this. Thanks in advance, Mayuresh
-
hey, I want to set links in funnel chart I did it using the 'link' attribute, now I want to use ajax link request can anyone help me on this.
-
Hi, Thanks for your reply. I am using a set tag to add labels while adding this I am appending link attribute in that link I have one encoded link which is working fine for me. Now my new requirement is I want to send ajax request instead of link which changes the browser url. I want, if I click on any section od funnel chart it should update a specif div with ajax request. Again thanks!
-
Hello friends, I want to make funnel chart clickable. When I click on any section of funnel chart..it should redirect me to somewhere else to my destiny. Please help me out to resolve this. Thanks, Mayuresh
-
Want To Display Value And Tooltip On Bar Graph As Days And Hours
hMayuresh posted a topic in FusionCharts and PHP
Hello Friends, Can any one help me to solve following thing : I have generated a bargraph, but i am not able to show value on bar graph and tooltip with format days and hours. For ex. I need to display value on bar as "7d 13hr" as a value as well as tooltip. Thanks, Mayuresh -
Want To Display Value And Tooltip On Bar Graph As Days And Hours
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, Sorry to trouble you, but i got my mistake..i was just missing semicolon before using "displayValue". Thanks for your help. Thanks, Mayuresh -
Want To Display Value And Tooltip On Bar Graph As Days And Hours
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, thanks for reply, Could you please provide me the same with proper example. That would really help me. Please provide proper example for this. Thanks. -
Want To Display Value And Tooltip On Bar Graph As Days And Hours
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, Thanks for your quick reply. Actualy I am trying to show like this $FusionChartObject->addChartData( ( ( $intSecondValue/ 3600 ) / 24 ), 'name=abc' ); When i try with following $FusionChartObject->addChartData( ( ( $intSecondValue/ 3600 ) / 24 ) . 'd' . '2 hr', 'name=abc' ); it shows blank graph. How to modify this? Thanks, Mayuresh -
Hey guys, I am new to fusioncharts, Can anyone please help me out? I am retriving some data from DB, and i wnat to generate horizontal bar graph for according to retrieved data. Can any one tell me how to show horizontal bar graph. Thanks, mayuresh
-
Problem In Displaying Y-Axis Namings Properly
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
-
Problem In Displaying Y-Axis Namings Properly
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, Thanks a lot. It is working fine if the data point is 1..but still displaying duplicate y-axis names/values if data point value is 0. Thanks, Mayuresh -
Problem In Displaying Y-Axis Namings Properly
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, Please find code as mentioned below, $objFusionChart = new FusionCharts('MSLine','778','250', '', 1); $objFusionChart->SWFPath = '/Common/fushion/fushion_charts/'; # Store chart attributes in a variable $strParam="bgColor=EEEEEE; canvasBorderThickness=1; chartLeftMargin=15; chartRightMargin=25; chartTopMargin=10; xAxisNamePadding=10; yAxisValuePadding=20; xAxisValuePadding=20; valuePadding=5; canvasPadding=20; labelPadding=10; yAxisNamePadding=20; borderThickness=0; outCnvBaseFont=Verdana; outCnvbaseFontSize=10; baseFont=Verdana; baseFontSize=9; baseFontColor=666666; zeroPlaneColor=000000; zeroPlaneThickness=3; zeroPlaneAlpha=80; bgAlpha=40,100; numVDivLines=10; showValues=0; caption=; xAxisName=; rotateYAxisName=0; yAxisNameWidth=0; yAxisName=; divLineIsDashed=1; divLineDashedLen=2; divLineDashedGap=2; numberPrefix=; labelDisplay=Rotate; slantLabels=1; formatNumberScale=0;"; $objFusionChart->setChartParams( $strParam ); $arrmixYAxisData = array( '02/07/2011' => 0, '02/08/2011' => 0, '02/09/2011' => 0, '02/10/2011' => 0, '02/11/2011' => 0, '02/12/2011' => 0, '02/13/2011' => 0, '02/14/2011' => 0, '02/15/2011' => 0, '02/16/2011' => 0, '02/17/2011' => 1, '02/18/2011' => 0, '02/19/2011' => 0, '02/20/2011' => 0, '02/21/2011' => 0, '02/22/2011' => 0, ); $objFusionChart->addDataset( '' ); foreach( $arrmixYAxisData as $strDate=>$intTraffic ) { $objFusionChart->addCategory( date( 'M/d/y', strtotime( $strDate )) ); $objFusionChart->addChartData( (int) $intTraffic, "toolText=".$strDate .', '.$intTraffic ); } $objFusionChart->renderChart( true ); exit; Thanks Mayuresh -
Problem In Displaying Y-Axis Namings Properly
hMayuresh replied to hMayuresh's topic in FusionCharts and PHP
Hi, Thanks for your help, here I am attaching the screen shot for more clarification. Thanks, Mayuresh -
Hi, Can any one help me out to show % sign in value on bar graph and pie graph. When i set showValues=1, i want to show value with % sign on bar graph as well as pie graph, Value is displaying properly but not able to show % sign. Please help me for this. Thanks, Mayuresh
-
Hey guys, I dont know how to add funnel chart in my application. Can any one help me out to integrate funnel chart. Just mention the steps for it. Thanks, Mayuresh
-
Hey Thanks again, That would be really great, if you look for horizontal funnel chart. Please keep me updated for that. Thanks, Mayuresh
-
Hey, Thanks Angie for your immediate reply. It is really very very helplfull for me. Could you please tell me, how to draw horizantal funnel chart? That would be great help. Thanks again, Mayuresh
-
Hey Guys, Can any one tell me, how I can set dynamic height for my horizontal ( MSBar3D ) graph? For eg. if my Y Axis data is incrementing dynamicaly...then how can i set the height accordingly? I have tried with giving height="100%" to div as well as fusion chart object...but it didn't worked for me... please help me out. Thanks in advance. Thanks, mayuresh
-
Hi Sanjukta, Thanks for your reply. So here i have to predefine the height for single record..and as the records count get incremented..i have to increase the height proportionaly by me php code. Thanks again. Mayuresh