maligangadhar
Members-
Content count
102 -
Joined
-
Last visited
-
Days Won
1
Everything posted by maligangadhar
-
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
div id="chartdiv" align="center"> The chart will appear within this DIV. This text will be replaced by the chart. /div -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
please find my code as follows: var myChart = new FusionCharts("SWFcharts/MSLine.swf", "myChartId", "50%","50%", "0", "0"); div: The chart will appear within this DIV. This text will be replaced by the chart. error: chart is not able to displayed , only div text element ie :The chart will appear within this DIV. This text will be replaced by the chart. only visible -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
i have already tried with the following approach but it didnt work out. Ref.- var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "50%", "50%", "0", "0"); secondly : for gradient setting for node -document now showing the required things Can u please send me any example which ( node has gradient setting instead of just settiong color="") has this feature -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
waiting for ur reply, Please respond with any alternatives... -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
waiting for ur reply... -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
still not clear with re rendering screen just need to set width in percentage(%) since , all screens may be different ( in case pixel got changed or look and feel in the big screens.....if i say 1000 it may look fine in laptop but the same looks ugly when i open my screen in the tv monitor or some where else ) Please let me know to set some width ( better %) instead of specifying number(eg 1000) may be static width , i dont even need to set dynamic width ....always need to set the same width ..... 2. can i add gradient eg: background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.40, #ff0), color-stop(0.5, orange), color-stop(0.60, rgb(255, 0, 0))); means: need to show one color on top and other one in bottom for nodes...... Can this be possible since , xml accepts :-- set allowDrag="1" color="FBB117" height="45" id="test" name="test" width="130" x="27" y="340" Please help me on this.... -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
thx for ur reply, 1. bgSWF : my concern was to show image for multiple nodes , i mean node1,node2, node3 ---background image1 i mean node4,node4, node4 ---background image2 Please note single image should cover all the nodes( please see my attachment...last mail) 2. var myChart = new FusionCharts("SWFcharts/MSLine.swf", "myChartId", "900","350", "0", "1"); --- here i need to set dynamic width for the chart to be plot(instead of setting with in number i need to set as % ex:90%) can this be possible thru fusion charts .... Thanks in advance. -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
thx for ur reply, Need some clarifications: 1.bgSWF ----i need to set bg image for muliple nodes....say for node 1 and node2 i want t set some image as background.... 2.plotBorderColor : seems to works only for data set , i need to set seperate borer color for different node,means setting plotBorderColor for the set ( it wont work out with set .......i beliebe.) is there any way we can set plotBorderColor -> for set. -
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
thx for ur help, can able to set font properties..... Need help for the below: 1. Can i set bg image for complete node(please see attachment....) 2. can i set border color for individual set ...... 3. can i draw straight lines......for parent and child.....( if not any alternative......) Regards Gangadhar -
thx , it is working fine, One more request: 1. Can i draw vertical line connector .....plz refer as attachment 2. Can i set any font property for the node..... Thx in advance.
-
need to show DragNode vertically......
maligangadhar replied to maligangadhar's topic in General usage
any help...... -
any example for /Charts/DragNode.swf need to set different colors for diff sets..... my code as follows: set x='27' y='265' width='90' height='45' name='Web Server 02' plotBorderThickness="10" plotBorderColor='#800000' id='Web Server 02'
-
plotBorderColor setting for whole data set is working fine , but when i do the same for individual set its not working .... note: iam using DragNode.swf code:
-
i mean plotBorderColor...this works fine for data set but i need to set different colors for different set ....values....
-
Iam using scatter charts for displaying my charts, since i need to show date values on x axis for different trends..... ex: yaxis x axis date ( date ) server1 12 May 2010 19:03 server1 28 May 2010 21:03 server1 28 May 2010 19:44 server2 28 May 2010 20:44 server2 27 May 2010 21:44 server3 28 May 2010 16:44 server3 30 May 2010 19:44 a. how i need to show date values in x-axis, since x axis accepts only integer values b. assume that date is converted to integer ex:1181500200 how i need to populate in scatter charts. c. date and time are different for all the servers.. Any help on this..
-
waiting fo ur help
-
Present the data XML to table format, HTML or flash either way is ok
maligangadhar replied to Sanjukta's topic in General usage
i use normal java (written util which generates the xml for fusion charts + java script for invoking this....) any tools available in fusion charts that convert date (format dd:mm:yyyy hh:mm:ss) to integer for plotting in x axis..... Regards Ganga -
Present the data XML to table format, HTML or flash either way is ok
maligangadhar replied to Sanjukta's topic in General usage
any help.... -
Present the data XML to table format, HTML or flash either way is ok
maligangadhar replied to Sanjukta's topic in General usage
really it was helpfull , thx alot trend line is working.... Please clarify : 1. iam generating X Axis values dynamically , since these values are different from server to another ( need t populate 2 server data, dates are different from one server t anoter. ex: server 1 4pm t0 10pm server2 2 pm to 12pm serer 3 3 am to 11am in this case how i need to set x axis values( assuming that converting date to integer....) 2.is there any way in fusion charts that need to handle "no data found" -- i need to invoke my function when it returns me no data found.....how can i handle these..... ex :code reportUrl = uri + "/trend?" + param; var myChart = new FusionCharts("SWFcharts/MSLine.swf", "myChartId", "1100", "350", "0", "1"); myChart.setDataURL(reportUrl); myChart.render("chartdiv"); Thanks in advance. -
Present the data XML to table format, HTML or flash either way is ok
maligangadhar replied to Sanjukta's topic in General usage
thx for ur reply, Need some help on the below: 1.can we connect this scattered dots with line.. 2.x axis values are dynamic ( not known what will be populated .....always dynamic) , getting date+time , how can i convert this into integer. (since we need to give some range in x axis ie integer values) Thanks in advance. Regards Ganga -
strangely , i have 3 trends that i need to show it by using MS Line . X axis i need to show date/time ,y axis values need to be populated. but some cases x axis values are different for 3 trends .(its data/time is different for all 3 , since we need to have something in common for populating multi line graph), data is populating wrong chart since i dont have common x axis values. example: server values time server1 10 2pm server1 20 3pm server1 10 4pm server2 30 2pm server2 40 5pm server2 55 7pm server3 44 2pm server3 44 5pm server3 4 9pm server3 55 11 pm Note : times are different for all servers. Please let me know by any means we can populate these charts.(suggest me any chart which goes with my requirement) Thx in advance.
-
can this be possible with fusion charts ???? waiting......
-
waiting for ur help.......on this....
-
Present the data XML to table format, HTML or flash either way is ok
maligangadhar replied to Sanjukta's topic in General usage
any help....