hMayuresh
Members-
Content count
37 -
Joined
-
Last visited
About hMayuresh
-
Rank
Advanced Member
- Birthday 02/09/1982
Profile Information
-
Gender
Male
-
Location
India Pune
-
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? -
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 -
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
-
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!
-
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.
-
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 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 -
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 -
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