cisco2103
Members-
Content count
5 -
Joined
-
Last visited
About cisco2103
-
Rank
Forum Newbie
-
I am trying to create a dynamic editable angular and everything works until I get to here when I change the dial. Any help would be greatly appreciated. Thanks, Terry function FC_ChartUpdated(DOMId){ if (DOMId == "chart1") { //Get the changed value var chartRef = getChartFromId(DOMId);dialValue = chartRef.getDataForId( "CS"); //... Do what your application demands... } }
-
Trying to retrieve data from user editable linear gauge
cisco2103 replied to kennethdavid's topic in Using FusionWidgets XT
Is there any follow up to this post? It sounds like a similiar issue that i am having. -
I found an issue that needs to be address. The alignment of my vlines is either on the right or left of my label depending on what comes first in the code. Example: <vLine color='FF5904' thickness='1' dashed='1' /> -- Displays left of the label <set label='850' value='12' toolText ='Hot Weight: 850, Count: 12' /> How do I get this to where the vLine runs through the middle of the label? Thanks, Terry
-
I am trying to post some numbers backwards and it appears that the chart has a mind of its own. The rendered code appears correctly(See Below) but the graph appears with 0 first and then creates its own set of numbers. Is it possibe to have lowerLimit higher than the UpperLimit? If not then how to you work backwards to show the higher numbers first? <td id="tcCrewing"><object id="Crewing" codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="110" width="405" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="405" HEIGHT="110" viewastext style="z-index:-1;"> <PARAM NAME="Movie" VALUE="charts/HLinearGauge.swf" > <PARAM NAME="FlashVars" VALUE="&chartWidth=405&chartHeight=110&dataXML=<graph bgColor='FFFFFF' decimalPrecision='0' lowerLimit='464' upperLimit='0' showBorder='0' ticksBelowGauge='1' valuePadding='0' gaugeFillMix='' showGaugeBorder='0' pointerOnTop='0' pointerRadius='5' pointerBorderColor='000000' pointerBgColor='000000' annRenderDelay='0' showShadow='0' minorTMNumber='0' baseFontColor='000000' animation='0'> <colorRange> <color minValue='464' maxValue='348' alpha='0' /> <color minValue='348' maxValue='232' alpha='0'/> <color minValue='232' maxValue='116' alpha='0' /> <color minValue='116' maxValue='0' alpha='0' /> </colorRange> <annotations> <!-- The circle which makes for the arc shape above the gauge--> <annotationGroup id='Grp1' showBelow='0' x='210' y='-160' xScale='200'> <annotation type='circle' radius='200' color='FFFFFF' /> </annotationGroup> <!-- The gradient rectangle which is usd as the gauge--> <annotationGroup id='Grp2' showBelow='1'> <annotation type='rectangle' x='15' y='10' toX='406' toY='59' color='FF0000,FCEF27,678000' /> </annotationGroup> <!-- The labels Good and Bad --> <annotationGroup id='Grp3' showBelow='0'> <annotation type='text' x='40' y='40' size='10' color='FFFFFF' bold='1' label='Bad' /> <annotation type='text' x='385' y='40' size='10' color='FFFFFF' bold='1' label='Good' /> </annotationGroup> </annotations> <styles> <definition> <style name='LabelShadow' type='shadow' distance='1' strength='3' color='333333' /> </definition> <application> <apply toObject='Grp3' styles='LabelShadow' /> </application> </styles> <value>118</value> </graph> WIDTH="405" HEIGHT="110"> <param name="WMode" value="opaque"> </object> Any Help would truly be appreciated. Thanks, Terry Cisco
-
I am looking through this forum and not really finding what I need. I am trying to load a chart and my a user clicks export to PDF or Excel, save the chart as an image and then I can attach the image to a PDF or excel sheet. I can't imagine the only way to save an image is to right click save. Any help on this would be great. Thanks, Cisco2103